Skip to content

Commit

Permalink
fix: issue with vue post build script
Browse files Browse the repository at this point in the history
  • Loading branch information
nmerget committed Jan 17, 2025
1 parent 397bf2a commit 3477988
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/scripts/post-build/vue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default (tmp?: boolean) => {
replacements.push({
from: 'if (props.onInput) {',
to:
'this._value = (event.target as any).value;\n' +
'_value.value = (event.target as any).value;\n' +
'if (props.onInput) {'
});
}
Expand Down

0 comments on commit 3477988

Please sign in to comment.