vant.js 194 B

12345678
  1. import Vue from 'vue';
  2. import { Toast, Dialog, Popup, Image, Loading } from 'vant';
  3. import 'vant/lib/index.css'
  4. Vue.use(Toast);
  5. Vue.use(Dialog);
  6. Vue.use(Popup);
  7. Vue.use(Image);
  8. Vue.use(Loading);