- [nullish.a.b.c.d ?? 'not found']
-
- //returns {{ nullish.a.d?.e ?? 'not found' }}
-
-
- [nullish.a.b.c ?? 'not found']
-
- //returns {{ nullish.a.b.c ?? 'not found' }}
-
-
- ["Test", 1, ...('abc').split('')]
-
- //returns {{ ['Test', 1, ...'abc'.split('')] }}
-
-
+ [nullish.a.b.c.d ?? 'not found']
+
+ //returns {{ nullish.a.d?.e ?? "not found" }}
+
+
+ [nullish.a.b.c ?? 'not found']
+
+ //returns {{ nullish.a.b.c ?? "not found" }}
+
+
+ ["Test", 1, ...('abc').split('')]
+
+ //returns {{ ["Test", 1, ..."abc".split("")] }}
+
+ - {{ custom }} -
-- {{ customLang }} -
-- {{ customSrc }} -
-+ {{ custom }} +
++ {{ customLang }} +
++ {{ customSrc }} +
+
-
- HMR: click button and edit template part of ./TestHmr.vue
,
- count should not reset
-
-
-
+
+ HMR: click button and edit template part of
+ ./TestHmr.vue
+ , count should not reset
+
+
+
- Path for assets import from js: {{ filepath }}
-
- Relative asset reference in template:
-
-
- Alias asset reference in template:
-
-
- Absolute asset reference in template:
-
-
- Absolute asset reference without protocol header in the template:
-
-
+ Path for assets import from js:
+ {{ filepath }}
+
+ Relative asset reference in template:
+
+
+ Alias asset reference in template:
+
+
+ Absolute asset reference in template:
+
+
+ Absolute asset reference without protocol header in the template:
+
+
+export default { components: { componentA: () => import('./componentA.vue') @@ -25,5 +25,5 @@ export default { } }-
- This is componentA -
+This is componentA
diff --git a/playground/test-component/async/componentB.vue b/playground/test-component/async/componentB.vue index 4b797c6..5eac649 100644 --- a/playground/test-component/async/componentB.vue +++ b/playground/test-component/async/componentB.vue @@ -1,5 +1,3 @@ -- This is componentB -
+This is componentB
diff --git a/playground/test-component/recursive/TestRecursive.vue b/playground/test-component/recursive/TestRecursive.vue index 45a2c16..42e7cf4 100644 --- a/playground/test-component/recursive/TestRecursive.vue +++ b/playground/test-component/recursive/TestRecursive.vue @@ -3,21 +3,21 @@ import TestRecursiveTree from "./TestRecursiveTree.vue"; import treedata from "./treedata.json"; export default { - name: "TestRecursion", - components: { - TestRecursiveTree, - }, - data() { - return { - treedata, - }; - }, + name: "TestRecursion", + components: { + TestRecursiveTree, + }, + data() { + return { + treedata, + }; + }, }; -