# 安装
- 安装 gulu
npm i  test_gulu_lee
- 引入 gulu
2.1按需引入
import {Button,ButtonGroup,Icon} from 'test_gulu_lee'
import 'test_gulu_lee/dist/gulu.css'
export default {
  name:'app',
  components:{
    'g-button':Button,
    'g-icon':Icon
  }
}
2.2全局引入
import gulu from 'test_gulu_lee'
vue.use(gulu)
起步 →