Quasar 2 Vue 3 如何通过 .vue 文件中的 "this" 对象访问 app.config.globalProperties?
Quasar 2 Vue 3 how to access app.config.globalProperties through "this" object in .vue files?
我正在使用 Quasar 2 Vue 3。目前我需要在每个 .vue
文件中 import app from "../boot/firebaseConfig";
并使用 app.config.globalProperties.<foo>
语法访问全局变量。无论如何可以将其缩短为仅使用 this.<foo>
?
data() {
return {
db: app.config.globalProperties.$db
}
},
methods: {
method1() { this.db ...}
}
我正在使用 Quasar 2 Vue 3。目前我需要在每个 .vue
文件中 import app from "../boot/firebaseConfig";
并使用 app.config.globalProperties.<foo>
语法访问全局变量。无论如何可以将其缩短为仅使用 this.<foo>
?
data() {
return {
db: app.config.globalProperties.$db
}
},
methods: {
method1() { this.db ...}
}