Scrubbed Tailwind Components v2 is a Vue 3 component library that provides a set of pre-built and beautifully styled components using Tailwind CSS. This library is designed to help you quickly build modern and responsive user interfaces.
Scrubbed Tailwind Components v2 is a Vue 3 component library that provides a set of pre-built and beautifully styled components using Tailwind CSS. This library is designed to help you quickly build modern and responsive user interfaces.
To use Scrubbed Tailwind Components v2 in your project, you can install it via npm:
``sh`
npm install scrubbed-tailwind-components-v2
You can import and use the components in your Vue application like this:
`vue
`
This project uses Vite for development and building.
- VSCode
- Volar (and disable Vetur)
To set up the development environment, clone the repository and install the dependencies:
`sh`
git clone https://[your-username]@bitbucket.org/devteam_scrubbed/scrubbed-tailwind-components-v2.git
cd scrubbed-tailwind-components-v2
npm install
To start the development server with hot-reloading, run the following command:
`sh`
npm run dev
To build the library for production, run:
`sh`
npm run build
This project uses Cypress for both component and end-to-end testing.
- Run component tests (headless):
`sh`
npm run test:unit
`
- Run component tests (headed):
sh`
npm run test:unit:dev
`
- Run end-to-end tests (headless):
sh`
npm run test:e2e
`
- Run end-to-end tests (headed):
sh``
npm run test:e2e:dev