diff --git a/src/runtime/internal/dom.ts b/src/runtime/internal/dom.ts index 8dc4818747..e447eae362 100644 --- a/src/runtime/internal/dom.ts +++ b/src/runtime/internal/dom.ts @@ -99,7 +99,7 @@ export function set_attributes(node: Element & ElementCSSInlineStyle, attributes } else if (key === 'style') { node.style.cssText = attributes[key]; } else if (key === '__value') { - (node as any).value = (node as any).__value = attributes[key]; + (node as any).value = node[key] = attributes[key]; } else if (descriptors[key] && descriptors[key].set) { node[key] = attributes[key]; } else {