提交 ef934f5f 编写于 作者: fxy060608's avatar fxy060608

chore: nvue native tag

上级 7c2c1659
......@@ -130,6 +130,9 @@ function isAppNativeTag(tag) {
return shared.isHTMLTag(tag) || shared.isSVGTag(tag) || isBuiltInComponent(tag);
}
function isAppNVueNativeTag(tag) {
if (isBuiltInComponent(tag)) {
return true;
}
if (NVUE_BUILT_IN_TAGS.includes(tag)) {
return true;
}
......
......@@ -126,6 +126,9 @@ function isAppNativeTag(tag) {
return isHTMLTag(tag) || isSVGTag(tag) || isBuiltInComponent(tag);
}
function isAppNVueNativeTag(tag) {
if (isBuiltInComponent(tag)) {
return true;
}
if (NVUE_BUILT_IN_TAGS.includes(tag)) {
return true;
}
......
......@@ -137,6 +137,9 @@ export function isAppNativeTag(tag: string) {
}
export function isAppNVueNativeTag(tag: string) {
if (isBuiltInComponent(tag)) {
return true
}
if (NVUE_BUILT_IN_TAGS.includes(tag)) {
return true
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册