wip(ssr): fix index
This commit is contained in:
parent
ba263c909c
commit
98e3e03fd1
@ -35,6 +35,7 @@ export const ssrTransformElement: NodeTransform = (node, context) => {
|
|||||||
)
|
)
|
||||||
|
|
||||||
if (hasDynamicVBind) {
|
if (hasDynamicVBind) {
|
||||||
|
// TODO
|
||||||
}
|
}
|
||||||
|
|
||||||
for (let i = 0; i < node.props.length; i++) {
|
for (let i = 0; i < node.props.length; i++) {
|
||||||
@ -64,7 +65,7 @@ export const ssrTransformElement: NodeTransform = (node, context) => {
|
|||||||
if (directiveTransform) {
|
if (directiveTransform) {
|
||||||
const { props } = directiveTransform(prop, node, context)
|
const { props } = directiveTransform(prop, node, context)
|
||||||
for (let j = 0; j < props.length; j++) {
|
for (let j = 0; j < props.length; j++) {
|
||||||
const { key, value } = props[i]
|
const { key, value } = props[j]
|
||||||
openTag.push(
|
openTag.push(
|
||||||
createCallExpression(context.helper(SSR_RENDER_ATTR), [
|
createCallExpression(context.helper(SSR_RENDER_ATTR), [
|
||||||
key,
|
key,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user