ZZJ
2021-11-10 9e8e7fa9a379eb5a633ad1087211bd5dd38d014a
1
2
3
4
5
6
7
8
9
import Vue from 'vue';
import App from './App.vue';
import Mixin from "./mixins";
 
Vue.mixin(Mixin);
new Vue({
  el: '#app',
  render: h => h(App)
})