1.0.0 • Published 5 years ago
lemon-ui-vue v1.0.0
Lemon UI —— 一个 Vue UI 组件
作者 : Pray
介绍
这是一个基于 Vue 的UI框架,希望对你有帮助。
安装
搭建Vue的开发环境
vue create hello-world
如果你还没有安装vue-cli,请先安装vue-cli,再进行下一步。
安装 Lemon UI
yarn add lemon-ui-vue #or npm install lemon-ui-vue --save
环境配置
样式引入
import 'lemon-ui-vue/dist/index.css'
组件注册
<script> import 'lemon-ui-vue/dist/index.css' import {Button} from 'lemon-ui-vue' export default { name: 'yourApp', components: { Button } } </script>
使用第一个Button组件
<Button>第一个的按钮</Button>