Missing support for `<search>` element
Vue version
3.3.4
Link to minimal reproduction
Steps to reproduce
Include a <search>
element in a template
What is expected?
The element is picked up as a native element
What is actually happening?
[Vue warn]: Failed to resolve component: search
If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement
System Info
No response
Any additional comments?
<search>
is a new HTML element that provides a search
landmark, rather than requiring role="search"
(https://developer.mozilla.org/en-US/docs/Web/HTML/Element/search). The element is supported in iOS/iPadOS 17, Safari 17 and Firefox 118.
Hey, got the same error on an Vue + Astro project. I tried to solve the warning with compilerOptions.isCustomElement
, but had no luck. Link to my Astro Issue.