A UI library built with Storybook for Vue 3.
Live demo:
https://storybook-ui-kit-dev.expert.uz
# with npm
npm install ex-ui-kit
# with yarn
yarn install ex-ui-kit
Then add the theme files to the css settings in your project build config..
Vue - vue.config.js
Nuxt - nuxt.config.js
For Vue - add the reference to scss files in vue.config.js.
css: [
'ex-ui-kit/styles',
],
For Nuxt - add the reference to scss files in nuxt.config.js.
css: [
'ex-ui-kit/styles',
],
Import the components directly from the /storybook folder.
import { Button } from 'ex-ui-kit';