如何在设置 Vuetify 3 中使用全局变量
How to use global variables inside the setup Vuetify 3
我正在使用 vue 3 设置,我想访问我使用的全局变量 vuetify。
我可以在 config.globalVariable 中看到它,但我无法在设置中使用它。
{_uid: 0, _component: {…}, _props: null, _container: div#app, _context: {…}, …}
component: ƒ component(name, component)
config: Object
compilerOptions: (...)
errorHandler: undefined
globalProperties:
$vuetify: {defaults: {…}}
$messageSystem: {addMessage: ƒ}
__proto__: Object
isNativeTag: (tag) => {…}
...
如你所见,我看到了 $vuetify,但在设置中我无法访问它。
setup() {
...
this.$vuetify.theme.dark = true;
...
这是我访问全局变量的方式吗?
我得到的错误:
Cannot read property '$vuetify' of undefined
您无法访问 setup
挂钩中的 this
,但您可以使用 getCurrentInstance
获取包含配置的应用程序实例:
import { getCurrentInstance,onMounted } from 'vue'
export default {
setup() {
const internalInstance = getCurrentInstance()
onMounted(()=>{
nternalInstance.appContext.config.globalProperties.$vuetify.theme.dark=true
})
}
我正在使用 vue 3 设置,我想访问我使用的全局变量 vuetify。 我可以在 config.globalVariable 中看到它,但我无法在设置中使用它。
{_uid: 0, _component: {…}, _props: null, _container: div#app, _context: {…}, …}
component: ƒ component(name, component)
config: Object
compilerOptions: (...)
errorHandler: undefined
globalProperties:
$vuetify: {defaults: {…}}
$messageSystem: {addMessage: ƒ}
__proto__: Object
isNativeTag: (tag) => {…}
...
如你所见,我看到了 $vuetify,但在设置中我无法访问它。
setup() {
...
this.$vuetify.theme.dark = true;
...
这是我访问全局变量的方式吗?
我得到的错误:
Cannot read property '$vuetify' of undefined
您无法访问 setup
挂钩中的 this
,但您可以使用 getCurrentInstance
获取包含配置的应用程序实例:
import { getCurrentInstance,onMounted } from 'vue'
export default {
setup() {
const internalInstance = getCurrentInstance()
onMounted(()=>{
nternalInstance.appContext.config.globalProperties.$vuetify.theme.dark=true
})
}