API
Vue.js API
Global Config
Vue.config
is an object containing Vue’s global configurations. You can modify its properties listed below before bootstrapping your application:
debug
-
Type:
Boolean
-
Default:
false
-
Usage:
Vue.config.debug = true
When in debug mode, Vue will:
-
Print stack traces for all warnings.
-
Make all anchor nodes visible in the DOM as Comment nodes. This makes it easier to inspect the structure of the rendered result.
Debug mode is only available in development build.
-
delimiters
-
Type:
Array<String>
-
Default:
登录查看完整内容