Vue 3 Design System Components with Tailwind CSS 4
npm install @etus/design-system
# or
yarn add @etus/design-system
# or
pnpm install @etus/design-systemimport { createApp } from "vue";
import App from "./App.vue";
import DesignSystem from "design-system";
import "design-system/styles.css";
const app = createApp(App);
app.use(DesignSystem);
app.mount("#app");@import 'tailwindcss';
@config '@etus/design-system/tailwind.config.cjs';Visit our Storybook documentation to see all available components and their usage examples.
# Install dependencies
yarn install
# Run development server
yarn dev
# Run Storybook
yarn storybook
# Build library
yarn build
# Build Storybook
yarn build-storybook- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
MIT License - see LICENSE file for details.