main.js 978 B

123456789101112131415161718192021222324252627282930313233343536
  1. // =========================================================
  2. // * Vuetify Material Dashboard - v2.1.0
  3. // =========================================================
  4. //
  5. // * Product Page: https://www.creative-tim.com/product/vuetify-material-dashboard
  6. // * Copyright 2019 Creative Tim (https://www.creative-tim.com)
  7. //
  8. // * Coded by Creative Tim
  9. //
  10. // =========================================================
  11. //
  12. // * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  13. import Vue from 'vue'
  14. import App from './App.vue'
  15. import router from './router'
  16. import store from './store'
  17. import './plugins/base'
  18. import './plugins/chartist'
  19. import './plugins/vee-validate'
  20. import vuetify from './plugins/vuetify'
  21. import i18n from './i18n'
  22. import './permisson'
  23. Vue.use(require('vue-moment'))
  24. Vue.config.productionTip = false
  25. new Vue({
  26. router,
  27. store,
  28. vuetify,
  29. i18n,
  30. render: h => h(App)
  31. }).$mount('#app')