鑫 UI 是一个基于 Vue 的 UI 组件库,目前包括有 Button、Tabs、Input、Grid、 Layout、Toast、Collapse、Popover 组件。项目尚未完工,持续更新中。
- 添加 CSS 样式
使用本框架前,请在 CSS 中开启 border-box
*,*::before,*::after{box-sizing: border-box;}
IE 8 及以上浏览器都支持此样式。
- 安装 xin-vue-ui
npm i --save xin-vue-ui
- 引入 xin-vue-ui
import {Button, ButtonGroup, Icon} from 'xin-vue-ui'
import 'xin-vue-ui/dist/index.css'
export default {
name: 'app',
components: {
'x-button': Button,
'x-icon': Icon
}
}