# 安装与使用



# 1.安装

yarn add vueel-demo
1

# 2.使用

# 安装依赖 Project setup

yarn install
1

# 引入 vueel-demo

import {VueButton, VueButtonGroup, VueIcon} from 'vueel-demo'
export default {
  components: {
    VueButton, VueButtonGroup, VueIcon
  }
}
1
2
3
4
5
6

# 可省略引入 svg symbols

<script src="//at.alicdn.com/t/font_2138557_fmq5zqg2y0j.js"></script>
1

# 3.启动服务

Compiles and hot-reloads for development

yarn serve
1

# 生产构建

Compiles and minifies for production

yarn build
1

# 运行测试 Run your unit tests

yarn test:unit
1

# 格式化代码 Lints and fixes files

yarn lint
1

# Customize configuration

See Configuration Reference (opens new window)._

Last Updated: 9/6/2022, 7:14:57 AM