You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
import "babel-polyfill" ; // 解决Ie9
import "./assets/icons/iconfont" ;
import IconSvg from "./components/common/IconSvg.vue" ; // svg组件
import "./element" ;
import Vue from "vue" ;
import App from "./App.vue" ;
import router from "./router/index" ;
import store from "./store/index" ;
import * as filters from "./filtres/index" ; // 全局过滤器
import "./role" ; // 权限
import allTools from "./plugin/allTools" ;
// import "./mock"; // 模拟数据
import { BASE _URL } from "./config/app"
import axios from "axios" ;
import "../public/config.json" ;
import myReq from "./utils/axios" ;
// 注册全局组件( register global)
Vue . component ( "icon-svg" , IconSvg ) ;
Vue . use ( allTools ) ;
// 注册全局实用程序过滤器( register global utility filters) .
Object . keys ( filters ) . forEach ( key => {
Vue . filter ( key , filters [ key ] ) ;
} ) ;
Vue . config . productionTip = false ;
let getUrl = "" ;
let url = process . env . VUE _APP _API _BASE ;
let startApp = function ( ) {
console . log ( window . global _config . BASE _URL ) ;
// axios.get("./config.json").then(res => {
// 基础地址
getUrl = url ;
myReq . defaults . baseURL = getUrl ;
// mySock.ws_url = res.data.BASE_URL2;
// console.log( res.data.BASE_URL+"\n"+ res.data.BASE_URL2)
new Vue ( {
router ,
store ,
render : h => h ( App )
} ) . $mount ( "#app" ) ;
// });
} ;
startApp ( ) ;