前面我们使用了全局变量,但是不能在nuxt的异步函数里面使用。
下面是解决方法
定义全局变量后在下面加上这几句话
// 这里是 为了在 asyncData 方法中使用
export default ({ app }, inject) => {
// Set the function directly on the context.app object
app.SERVER = '测试'
}
前面我们使用了全局变量,但是不能在nuxt的异步函数里面使用。
下面是解决方法
定义全局变量后在下面加上这几句话
// 这里是 为了在 asyncData 方法中使用
export default ({ app }, inject) => {
// Set the function directly on the context.app object
app.SERVER = '测试'
}