快速上手
安装
参考 安装 章节
添加 CSS 样式
使用本框架前,请在 CSS 中开启 border-box
*,*::before,*::after{ box-sizing: border-box }
1
IE 8 及以上浏览器支持此样式。
引入 Eazy-UI
import { Button } from 'eazy-ui'
import 'eazy-ui/dist/index.css'
export default {
name: 'app',
components: {
'ez-button': Button
}
}
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9