瀏覽代碼

chore(sfc-playground): default isCustomElement for sfc playground

Evan You 1 年之前
父節點
當前提交
be84f33ab0
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      packages/sfc-playground/src/App.vue

+ 2 - 1
packages/sfc-playground/src/App.vue

@@ -54,7 +54,8 @@ const sfcOptions = computed(
     template: {
       isProd: productionMode.value,
       compilerOptions: {
-        isCustomElement: (tag: string) => tag === 'mjx-container',
+        isCustomElement: (tag: string) =>
+          tag === 'mjx-container' || tag.startsWith('custom-'),
       },
     },
   }),