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:

    1. Print stack traces for all warnings.

    2. 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