index.js

import * as api from './api.js';
import routes from './routes.js';
import './static/style/style.less';
export default {
    use:[],
    //API 会注入到VUE 中 调用方法 this.$api.xxx
    api,
    //路由
    routes,
    //注入根路由
    routesRoot:[],
    //扩展方法,会注入到VUE 中 调用方法 this.$extend.xxx
    extend:{}
};