# 快速上手

请参考 安装 (opens new window)章节

# Hello world

import {Button} from 'easy-wheels'
import Vue from 'vue'

new Vue({
  el: '#app',
  components: {
    'w-button':Button
  }
})