1.0.0 • Published 1 year ago

jmdcores v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

Magic UI - Tailwind + Vue 2

Installing the library

node <= 16

    ## npm i magicuicore@latest

    ## yarn add magicuicore@latest
  1. Name Conventions

    1. Every Component Name Starts From J. Eg: Button -> JButton.

    2. index.js is the main entry file for all components.

How To Use Magic UI in your Project ?

<template>
    <j-button>Button Component Rendered</j-button>
</template>

<script>
import { JButton } from 'magicuicore';
export default {
    name: 'j-button',
};
</script>

Import the CSS in the top level of your vue project.

import 'magicuicore/dist/styles.css';

Pendig Things

  1. Dynamic Theming

How To Contribute

  1. Create a branch name based on the components name: Eg: "jbutton"
  2. create merge request and ask for review
  3. For any change i particular component make branch name with including the features needed to be added. Eg: "JButton" -> "jbutton-padding"
1.0.0

1 year ago