Nuxt/docs/content/3.api/1.composables/update-app-config.md
Clément Ollivier 944bba97ca
docs: update structure (#7047)
Co-authored-by: Pooya Parsa <pooya@pi0.io>
2022-09-13 14:54:31 +02:00

395 B

updateAppConfig

Updates app config using deep assignment. Existing (nested) properties will be preserved.

Usage:

const appConfig = useAppConfig() // { foo: 'bar' }

const newAppConfig = { foo: 'baz' }

updateAppConfig(newAppConfig)

console.log(appConfig) // { foo: 'baz' }

::ReadMore{link="/guide/directory-structure/app.config"}