platon-ui-vue3
v0.2.17
Published
Lightweight UI kit for Vue.js
Downloads
3
Readme
Documentation
Browse online documentation here.
Quick start
You need Vue.js version 2.6+ and Sass loader.
1 Install via npm
npm install platon-ui
2 Import and use Platon UI
Bundle
import Vue from 'vue'
import PlatonUI from 'platon-ui'
import 'platon-ui/scss/platon-ui.scss'
Vue.use(PlatonUI)
or Individual Components
import Vue from 'vue'
import { Select, Input } from 'platon-ui'
import 'platon-ui/scss/platon-ui.scss'
Vue.use(Select)
Vue.use(Input)
3 Include Material Design Icons
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css">
If you want to customize the icons or the theme, refer to the customization section on the documentation.