vant.js 219 B

123456789
  1. // 按需全局引入 vant组件
  2. import Vue from 'vue'
  3. import { Button, List, Cell, Tabbar, TabbarItem, Notify } from 'vant'
  4. Vue.use(Button)
  5. Vue.use(Cell)
  6. Vue.use(List)
  7. Vue.use(Tabbar)
  8. .use(TabbarItem)
  9. .use(Notify)