@locatick/ui
v0.1.0
Published
Vue 3 components library
Downloads
1,101
Readme
Table of Contents
Features
- 45+ UI components,
- directives,
- customizable styles (sass variables),
- internationalization,
- compatibility with all popular icon systems,
- full typescript support,
- helper css classes,
- ... and more
Installation
npm i @locatick/ui
/ yarn add @locatick/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 { createUI } from '@locatick/ui';
const config = {
// your config here
};
createApp(App)
.use(createUI(config))
.mount('#app');
Import stylesheet file:
@import '~@locatick/ui/styles';
Install fontawesome icons in your project:
npm i @fortawesome/fontawesome-free
and import icons in your styles:
@import '~@fortawesome/fontawesome-free/css/all.css';