@lekseek/ui
v0.15.3
Published
Vue 3 components library
Downloads
1,743
Readme
LekSeek UI
Vue 3 components library written in TypeScript and Sass with design system by LekSeek
Table of Contents
Documentation
To check out docs, visit ##TODO## page.
Features
- 50+ UI components,
- directives,
- customizable styles (sass variables),
- internationalization,
- support for font awesome icons,
- typescript support,
- helper css classes,
- ... and more
Installation
npm i @lekseek/ui
Quick start
Add library to your Vue 3 app in entry file (eg. main.js):
import { createApp } from 'vue';
import App from './App.vue';
import Ui from '@lekseek/ui';
createApp(App)
.use(createUI({}))
.mount('#app');
Import stylesheet file:
@import '~@lekseek/ui/dist/lekseek-ui';
Install Lekseek icons in your project:
npm i @lekseek/lekseek-icons
and import icons in your styles:
@import '~@lekseek/icons/dist/lekseek-icons.css';