我可以从商店访问包@ nuxtjs / device添加的标志吗?

时间:2019-10-10 19:41:07

标签: vue.js nuxt

我正在尝试使用@nuxtjs/device生成的标志来初始化存储状态变量:

export const state = () => ({
  isMenuVisible: !$device.isMobile
});

这不起作用,我收到此错误消息:

  

未定义$ device

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

您错过了“这个”

export const state = () => ({
  isMenuVisible: !this.$device.isMobile
});