快速上手

引入 SAKURA UI

//例如要引入 Button 组件
import { Button } from 'sakura_ui';

new Vue({
  el: '#app',
  components: {
    's-button':Button
  },
  template: '<s-button>设置</s-button>'
})
1
2
3
4
5
6
7
8
9
10