You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

vp-notebook-debug.js 295 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
123456789101112
  1. import Vue from 'vue';
  2. import {Dialog,Loading} from 'element-ui';
  3. import 'element-ui/lib/theme-chalk/index.css';
  4. import { i18n, lang } from '~/langs';
  5. import App from './index.vue';
  6. Vue.use(Dialog)
  7. Vue.use(Loading.directive)
  8. new Vue({
  9. i18n,
  10. render: (h) => h(App),
  11. }).$mount('#__vue-root');