Warning when using <search> native HTML element #13021
-
Hi, I'm trying to replace an HTML section with search in my Vue component now that it's fully supported and am getting a Vue warning in the console.
Am I to understand that Vue 3 doesn't recognize that search is a native HTML element? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
There's an explanation at #9249 (comment) about why it isn't trivial to add it now. The workaround in the meantime is to use |
Beta Was this translation helpful? Give feedback.
<search>
is a relatively recent addition, so it wasn't included when Vue 3 was first released.There's an explanation at #9249 (comment) about why it isn't trivial to add it now.
The workaround in the meantime is to use
isCustomElement
, see #9247 (comment).