Skip to content

Commit 795b908

Browse files
raymondmulleryyx990803
authored andcommitted
feat: support RegExp in ignoredElements (#6769)
1 parent 12255ff commit 795b908

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/core/vdom/patch.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,14 @@ export function createPatchFunction (backend) {
120120
if (
121121
!inPre &&
122122
!vnode.ns &&
123-
!(config.ignoredElements.length && config.ignoredElements.indexOf(tag) > -1) &&
123+
!(
124+
config.ignoredElements.length &&
125+
config.ignoredElements.some(ignore => {
126+
return ignore instanceof RegExp
127+
? ignore.test(tag)
128+
: ignore === tag
129+
})
130+
) &&
124131
config.isUnknownElement(tag)
125132
) {
126133
warn(

0 commit comments

Comments
 (0)