ignoredElements

  • 类型Array<string | RegExp>

  • 默认值[]

  • 用法

  1. Vue.config.ignoredElements = [
  2. 'my-custom-web-component',
  3. 'another-web-component',
  4. // 用一个 `RegExp` 忽略所有“ion-”开头的元素
  5. // 仅在 2.5+ 支持
  6. /^ion-/
  7. ]

须使 Vue 忽略在 Vue 之外的自定义元素 (e.g. 使用了 Web Components APIs)。否则,它会假设你忘记注册全局组件或者拼错了组件名称,从而抛出一个关于 Unknown custom element 的警告。