Procházet zdrojové kódy

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

Evan You před 1 rokem
rodič
revize
be84f33ab0
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  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-'),
       },
     },
   }),