1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| import Vue from 'vue'
| import {
| Button, Tabbar, TabbarItem, NavBar, Form, Field, Toast, Cell, List, Icon, Grid,
| GridItem,
| CellGroup,
| Circle,
| Dialog
| } from 'vant'
|
| Vue.use(Button)
| Vue.use(Tabbar)
| Vue.use(TabbarItem)
| Vue.use(NavBar)
| Vue.use(Form)
| Vue.use(Field)
| Vue.use(Toast)
| Vue.use(Cell)
| Vue.use(List)
| Vue.use(Icon)
| Vue.use(Grid)
| Vue.use(GridItem)
| Vue.use(CellGroup)
| Vue.use(Circle)
| Vue.use(Dialog)
|
|