ram-components
v1.3.2
Published
This Library consists of all the Vue3 Component built using TailwindCSS.
Downloads
27
Readme
RAM Frontend Vue Component Library
This Library consists of all the Vue3 Component built using TailwindCSS.
Installation
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>
Development
- 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.
Creating a New Component
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.