|
@@ -1,29 +1,30 @@
|
|
|
-// The Vue build version to load with the `import` command
|
|
|
-// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
|
|
|
-import Vue from 'vue';
|
|
|
-import App from '@/components/App.vue';
|
|
|
-// axios
|
|
|
-import '@/config/axios.js';
|
|
|
-// include
|
|
|
-import '@/config/include.js';
|
|
|
-
|
|
|
-// 通用store
|
|
|
-import store from '@/store/store.js';
|
|
|
-
|
|
|
-// router
|
|
|
-import router from './router/index.js';
|
|
|
-
|
|
|
-// 关闭生产模式下给出的提示
|
|
|
-Vue.config.productionTip = false;
|
|
|
-
|
|
|
-/* 引入自己写的全局样式 */
|
|
|
-import '~/assets/css/xt/element.css';
|
|
|
-
|
|
|
-/* eslint-disable no-new */
|
|
|
-new Vue({
|
|
|
- el: '#app',
|
|
|
- router,
|
|
|
- store,
|
|
|
- components: { App },
|
|
|
- template: '<App/>'
|
|
|
-});
|
|
|
+// The Vue build version to load with the `import` command
|
|
|
+// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
|
|
|
+import Vue from 'vue';
|
|
|
+import App from '@/components/App.vue';
|
|
|
+// axios
|
|
|
+import '@/config/axios.js';
|
|
|
+// include
|
|
|
+import '@/config/include.js';
|
|
|
+
|
|
|
+
|
|
|
+// 通用store
|
|
|
+import store from '@/store/store.js';
|
|
|
+
|
|
|
+// router
|
|
|
+import router from './router/index.js';
|
|
|
+
|
|
|
+// 关闭生产模式下给出的提示
|
|
|
+Vue.config.productionTip = false;
|
|
|
+
|
|
|
+/* 引入自己写的全局样式 */
|
|
|
+import '~/assets/css/xt/element.css';
|
|
|
+
|
|
|
+/* eslint-disable no-new */
|
|
|
+new Vue({
|
|
|
+ el: '#app',
|
|
|
+ router,
|
|
|
+ store,
|
|
|
+ components: { App },
|
|
|
+ template: '<App/>'
|
|
|
+});
|