美文网首页
vue项目外配置

vue项目外配置

作者: 酪蕊璺 | 来源:发表于2020-11-08 13:58 被阅读0次

    public 中新建 config.json,里面可配置项目名称等

    main.js 中修改以下代码:

    import axios from 'axios'
    //引入配置文件
    axios.get('config.json')
        .then(response => {
            Vue.prototype.baseConfig = response.data;
            new Vue({
                router,
                store,
                render: h => h(App)
            }).$mount('#app');
        })
        .catch((error) => {
            console.error(error)
        });
    

    相关文章

      网友评论

          本文标题:vue项目外配置

          本文链接:https://www.haomeiwen.com/subject/bhipvktx.html