mirror of
https://github.com/1024-lab/smart-admin.git
synced 2025-09-19 02:14:56 +00: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);
|