|
|
@@ -125,7 +125,7 @@ exports[`compiler: element transform > component > static props 1`] = `
|
|
|
export function render(_ctx) {
|
|
|
const _component_Foo = _resolveComponent("Foo")
|
|
|
const n0 = _createComponentWithFallback(_component_Foo, {
|
|
|
- id: () => ("foo"),
|
|
|
+ id: () => ("foo"),
|
|
|
class: () => ("bar")
|
|
|
}, null, true)
|
|
|
return n0
|
|
|
@@ -150,7 +150,7 @@ exports[`compiler: element transform > component > v-bind="obj" after static pro
|
|
|
export function render(_ctx) {
|
|
|
const _component_Foo = _resolveComponent("Foo")
|
|
|
const n0 = _createComponentWithFallback(_component_Foo, {
|
|
|
- id: () => ("foo"),
|
|
|
+ id: () => ("foo"),
|
|
|
$: [
|
|
|
() => (_ctx.obj)
|
|
|
]
|
|
|
@@ -165,7 +165,7 @@ exports[`compiler: element transform > component > v-bind="obj" before static pr
|
|
|
export function render(_ctx) {
|
|
|
const _component_Foo = _resolveComponent("Foo")
|
|
|
const n0 = _createComponentWithFallback(_component_Foo, { $: [
|
|
|
- () => (_ctx.obj),
|
|
|
+ () => (_ctx.obj),
|
|
|
{ id: () => ("foo") }
|
|
|
] }, null, true)
|
|
|
return n0
|
|
|
@@ -178,9 +178,9 @@ exports[`compiler: element transform > component > v-bind="obj" between static p
|
|
|
export function render(_ctx) {
|
|
|
const _component_Foo = _resolveComponent("Foo")
|
|
|
const n0 = _createComponentWithFallback(_component_Foo, {
|
|
|
- id: () => ("foo"),
|
|
|
+ id: () => ("foo"),
|
|
|
$: [
|
|
|
- () => (_ctx.obj),
|
|
|
+ () => (_ctx.obj),
|
|
|
{ class: () => ("bar") }
|
|
|
]
|
|
|
}, null, true)
|
|
|
@@ -262,7 +262,7 @@ exports[`compiler: element transform > component with dynamic event arguments 1`
|
|
|
export function render(_ctx) {
|
|
|
const _component_Foo = _resolveComponent("Foo")
|
|
|
const n0 = _createComponentWithFallback(_component_Foo, { $: [
|
|
|
- () => ({ [_toHandlerKey(_ctx.foo-_ctx.bar)]: () => _ctx.bar }),
|
|
|
+ () => ({ [_toHandlerKey(_ctx.foo-_ctx.bar)]: () => _ctx.bar }),
|
|
|
() => ({ [_toHandlerKey(_ctx.baz)]: () => _ctx.qux })
|
|
|
] }, null, true)
|
|
|
return n0
|
|
|
@@ -275,7 +275,7 @@ exports[`compiler: element transform > component with dynamic prop arguments 1`]
|
|
|
export function render(_ctx) {
|
|
|
const _component_Foo = _resolveComponent("Foo")
|
|
|
const n0 = _createComponentWithFallback(_component_Foo, { $: [
|
|
|
- () => ({ [_ctx.foo-_ctx.bar]: _ctx.bar }),
|
|
|
+ () => ({ [_ctx.foo-_ctx.bar]: _ctx.bar }),
|
|
|
() => ({ [_ctx.baz]: _ctx.qux })
|
|
|
] }, null, true)
|
|
|
return n0
|