magicuicore
v1.0.872
Published
## Installing the library
Downloads
38
Readme
Magic UI - Tailwind + Vue 2
Installing the library
** node <= 16 **
## npm i magicuicore@latest
## yarn add magicuicore@latest
- Name Conventions
Every Component Name Starts From J. Eg: Button -> JButton.
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
- Dynamic Theming
How To Contribute
- Create a branch name based on the components name: Eg: "jbutton"
- create merge request and ask for review
- For any change i particular component make branch name with including the features needed to be added. Eg: "JButton" -> "jbutton-padding"