vue文件中computed一个全局变量
时间: 2023-09-21 08:10:49 浏览: 76
在vue项目中 实现定义全局变量 全局函数操作
5星 · 资源好评率100%
如果你想要在 Vue 组件中使用全局变量,可以将其定义在 Vue 实例的 `data` 属性中,然后在 `computed` 计算属性中使用。例如:
```javascript
// 在 Vue 实例中定义全局变量
new Vue({
data: {
globalVar: 'Hello world'
},
computed: {
computedVar() {
return this.globalVar + '!'
}
}
})
```
然后你可以在组件中通过 `this.$root.globalVar` 来访问全局变量 `globalVar`,也可以通过 `this.$root.computedVar` 来访问计算属性 `computedVar`。
阅读全文