我正在开发一个使用 Vue / Gridsome 的项目,并且有一个关于将 config.json 文件导入 import './config.json'
文件的问题main.js
。
config.json
文件如下:
{
"brand": "Name"
"company_no": "12345678"
"charity_no": "87654321"
"registered_address": "25 Riverdale House: London: SE13 7LW"
"contact_email": "support@name.com"
}
该main.js
文件如下:
export default function (Vue, { router, head, isClient }) {
Vue.component('Layout', DefaultLayout)
Vue.component('Page', PageLayout)
Vue.use(InfiniteLoading)
// General
head.meta.push({
name : 'description',
content : config.brand // I'd like to place the json value here
})
// ...
我是否需要安装一个解析 JSON 的插件才能读取这些属性,我将如何访问品牌价值作为示例?