8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31f6f92 commit b171877Copy full SHA for b171877
src/v2/api/index.md
@@ -105,15 +105,19 @@ type: api
105
106
### ignoredElements
107
108
-- **Type:** `Array<string>`
+- **Type:** `Array<string | RegExp>`
109
110
- **Default:** `[]`
111
112
- **Usage:**
113
114
``` js
115
Vue.config.ignoredElements = [
116
- 'my-custom-web-component', 'another-web-component'
+ 'my-custom-web-component',
117
+ 'another-web-component',
118
+ // Use a RegExp to ignore all elements that start with "ion-"
119
+ // 2.5+ only
120
+ /^ion-/
121
]
122
```
123
0 commit comments