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 260 B

3 years ago
1234567891011
  1. import Vue from 'vue';
  2. import {Dialog} 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. new Vue({
  8. i18n,
  9. render: (h) => h(App),
  10. }).$mount('#__vue-root');