json文件路径如下
我们在main.js 中挂载到vue的根属性
Vue.prototype.$axios.get(\'/static/key.json\').then((res) => {
var passwordkey = res.data.passwordkey;
console.log(passwordkey)
Vue.prototype.$passwordkey = passwordkey
}).catch(err => {
console.log("passwordkey " + err);
})
当打包后key.json 就会在static下了
当我们修改文件后,只需要刷新页面即可访问修改后的内容。