# 快速上手

# 安装

请参考安装章节

# Hello World

import { Button } from 'gulu-vue'
import 'gulu-vue/dist/index.css'
// 需手动引入CSS

import Vue from 'vue'


new Vue({
  el: '#app',
  components: {
    gButton: Button
  }
})