This Library consists of all the Vue3 Component built using TailwindCSS.
To install this component library from NPM, use
npm install ram-components
To install this component library locally, use
npm install <relative_path_to_this_project>
- Fork the master branch of this repository.
- Run
npm install
from the root of the repo to install dependencies. - Run
npm run dev
to start development in the same project. - Run
npm install <relative_path_to_this_project>
to start development locally on a different project. - If developing on a different project, Run
npm run link
to build the project on code change which also updates thenode_modules
folder in projects that have installed this project.
To create a new component in this component library,
- Create a new
.vue
file under/src/components/
. - Modify
/src/lib.ts
to import the newly created.vue
file. - Add the import to the list of component in the install function.
- Add the import to the list of components being exported.