We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have setup the app like this: https://vuetify-nuxt-module.netlify.app/guide/vuetify-configuration-file.html
My app.config got an object theme with theme.actTheme = ThemeAbc.name
I wonder, if its possible to access the app.config inside the vuetify config file, so I can setup the vuetify themes there:
theme: { defaultTheme: appConfig.theme.actTheme, themes: { ThemeAbc, ... }, },
for this I have to call the useAppConfig() composable. Is this possible, if yes how? I could not get it to work.
The text was updated successfully, but these errors were encountered:
I guess you can use useAppConfig in a new plugin hook: https://vuetify-nuxt-module.netlify.app/guide/nuxt-runtime-hooks.html (use vuetify:before-create hook, the options passed will be used to call createVuetify, juts add your themes inside the hook)
useAppConfig
vuetify:before-create
createVuetify
Sorry, something went wrong.
Thank you for your fast response.
I will close the issue, because i will not going further with nuxt in general.
No branches or pull requests
I have setup the app like this: https://vuetify-nuxt-module.netlify.app/guide/vuetify-configuration-file.html
My app.config got an object theme with theme.actTheme = ThemeAbc.name
I wonder, if its possible to access the app.config inside the vuetify config file, so I can setup the vuetify themes there:
for this I have to call the useAppConfig() composable. Is this possible, if yes how? I could not get it to work.
The text was updated successfully, but these errors were encountered: