1. 将json文件放在public下面 2.获取文件的方法 // 获取地址配置 const promise = fetch('/base.json', { method: 'GET', }).then((res) => { if (res.status === 200) { return res.json(); } else { return {}; } }); promise.then((res) => { serverConfig.value =res; });