Every Vue application exposes a config
object that contains the configuration settings for that application:
const app = createApp({}) console.log(app.config)
You can modify its properties, listed below, before mounting your application.
Type: Function
Default: undefined
Usage:
app.config.errorHandler = (err, vm, info) => { // handle error // `info` is a Vue-specific error info, e.g. which lifecycle hook // the error was found in }
Assign a handler for uncaught errors during component render function and watchers. The handler gets called with the error and the corresponding application instance.
Error tracking services Sentry (opens new window) and Bugsnag (opens new window) provide official integrations using this option.
Type: Function
Default: undefined
Usage:
app.config.warnHandler = function(msg, vm, trace) { // `trace` is the component hierarchy trace }
Assign a custom handler for runtime Vue warnings. Note this only works during development and is ignored in production.
Type: [key: string]: any
Default: undefined
Usage:
app.config.globalProperties.foo = 'bar' app.component('child-component', { mounted() { console.log(this.foo) // 'bar' } })
Adds a global property that can be accessed in any component instance inside the application. The component’s property will take priority when there are conflicting keys.
This can replace Vue 2.x Vue.prototype
extending:
// Before Vue.prototype.$http = () => {} // After const app = createApp({}) app.config.globalProperties.$http = () => {}
Type: { [key: string]: Function }
Default: {}
Usage:
const app = createApp({ mounted() { console.log(this.$options.hello) } }) app.config.optionMergeStrategies.hello = (parent, child) => { return `Hello, ${child}` } app.mixin({ hello: 'Vue' }) // 'Hello, Vue'
Define merging strategies for custom options.
The merge strategy receives the value of that option defined on the parent and child instances as the first and second arguments, respectively.
Type: boolean
Default: false
Usage:
Set this to true
to enable component init, compile, render and patch performance tracing in the browser devtool performance/timeline panel. Only works in development mode and in browsers that support the performance.mark (opens new window) API.
Object
Configure runtime compiler options. Values set on this object will be passed to the in-browser template compiler and affect every component in the configured app. Note you can also override these options on a per-component basis using the compilerOptions
option.
This config option is only respected when using the full build (i.e. the standalone vue.js
that can compile templates in the browser). If you are using the runtime-only build with a build setup, compiler options must be passed to @vue/compiler-dom
via build tool configurations instead.
Type: (tag: string) => boolean
Default: undefined
Usage:
// any element starting with 'ion-' will be recognized as a custom one app.config.compilerOptions.isCustomElement = tag => tag.startsWith('ion-')
Specifies a method to recognize custom elements defined outside of Vue (e.g., using the Web Components APIs). If a component matches this condition, it won't need local or global registration and Vue won't throw a warning about an Unknown custom element
.
Note that all native HTML and SVG tags don't need to be matched in this function - Vue parser performs this check automatically.
Type: 'condense' | 'preserve'
Default: 'condense'
Usage:
app.config.compilerOptions.whitespace = 'preserve'
By default, Vue removes/condenses whitespaces between template elements to produce more efficient compiled output:
Setting the value to 'preserve'
will disable (2) and (3).
Type: Array<string>
Default: ['{{', '}}']
Usage:
// Delimiters changed to ES6 template string style app.config.compilerOptions.delimiters = ['${', '}']
Sets the delimiters used for text interpolation within the template.
Typically this is used to avoid conflicting with server-side frameworks that also use mustache syntax.
Type: boolean
Default: false
Usage:
app.config.compilerOptions.comments = true
By default, Vue will remove HTML comments inside templates in production. Setting this option to true
will force Vue to preserve comments even in production. Comments are always preserved during development.
This option is typically used when Vue is used with other libraries that rely on HTML comments.
Deprecated in 3.1.0. Use compilerOptions.isCustomElement
instead.
© 2013–present Yuxi Evan You
Licensed under the MIT License.
https://v3.vuejs.org/api/application-config.html