@@ -35,6 +35,21 @@ export function render(_ctx) {
3535} "
3636` ;
3737
38+ exports [` compiler: v-once > on component 1` ] = `
39+ "import { resolveComponent as _resolveComponent , createComponent as _createComponent , insert as _insert , template as _template } from 'vue/vapor';
40+ const t0 = _template("<div ></div >")
41+
42+ export function render(_ctx) {
43+ const _component_Comp = _resolveComponent (" Comp" )
44+ const n1 = t0 ()
45+ const n0 = _createComponent (_component_Comp , [
46+ { id : () => (_ctx .foo ) }
47+ ], null , null , null , true )
48+ _insert (n0 , n1 )
49+ return n1
50+ } "
51+ ` ;
52+
3853exports [` compiler: v-once > on nested plain element 1` ] = `
3954"import { setDynamicProp as _setDynamicProp , template as _template } from 'vue/vapor';
4055const t0 = _template("<div ><div ></div ></div >")
@@ -47,6 +62,19 @@ export function render(_ctx) {
4762} "
4863` ;
4964
65+ exports [` compiler: v-once > with v-for 1` ] = `
66+ "import { createFor as _createFor , template as _template } from 'vue/vapor';
67+ const t0 = _template("<div ></div >")
68+
69+ export function render(_ctx) {
70+ const n0 = _createFor (() => (_ctx .list ), (_block ) => {
71+ const n2 = t0 ()
72+ return [n2 , () => {}]
73+ }, null , null , null , true )
74+ return n0
75+ } "
76+ ` ;
77+
5078exports [` compiler: v-once > with v-if 1` ] = `
5179"import { createIf as _createIf , template as _template } from 'vue/vapor';
5280const t0 = _template("<div ></div >")
0 commit comments