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-point.js 274 B

3 years ago
123456789101112
  1. import Vue from 'vue';
  2. import ElementUI from 'element-ui';
  3. import 'element-ui/lib/theme-chalk/index.css';
  4. Vue.use(ElementUI);
  5. import App from './vp-point.vue';
  6. // import App from '../manage/vp-point-manage.vue';
  7. new Vue({
  8. el: '#__vue-root',
  9. render: (h) => h(App),
  10. });