mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-09-17 19:06:39 +08:00
9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
// 按需全局引入 vant组件
|
|
import Vue from 'vue';
|
|
import { Button, List, Cell, Tabbar, TabbarItem } from 'vant';
|
|
|
|
Vue.use(Button);
|
|
Vue.use(Cell);
|
|
Vue.use(List);
|
|
Vue.use(Tabbar).use(TabbarItem);
|