Skip to content

Commit fa2cce6

Browse files
Publish: @stencil/vue-output-target v0.10.3
1 parent e572b60 commit fa2cce6

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
1+
## @stencil/vue-output-target@0.10.3 (2025-03-12)
2+
3+
#### :bug: Bug Fix
4+
5+
- `vue-output-target`
6+
- [`e572b60f`](https://github.com/stenciljs/output-targets/commit/e572b60f0ea1adca852a1738c9aa0d4c520f11b5) fix(vue): fix model value assignment ([@christian-bromann](https://github.com/christian-bromann))
7+
18
## @stencil/vue-output-target@0.10.2 (2025-03-12)
29

310
#### :bug: Bug Fix
411

512
- `vue-output-target`
6-
- [`acd18913`](https://github.com/stenciljs/output-targets/commit/acd18913e11c4516ab9def64ad01562a9ec7c3) fix(vue): correctly reference model value and more testing ([@christian-bromann](https://github.com/christian-bromann))
13+
- [`acd18913`](https://github.com/stenciljs/output-targets/commit/acd18913e11c4516ab9def64ad01562a9ec7c3) fix(vue): correctly reference model value and more testing ([@christian-bromann](https://github.com/christian-bromann))
714
- adding various more e2e test to verify functionality of the framework wrapper
815

916
## @stencil/vue-output-target@0.10.1 (2025-03-11)

packages/vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stencil/vue-output-target",
3-
"version": "0.10.2",
3+
"version": "0.10.3",
44
"description": "Vue output target for @stencil/core components.",
55
"author": "Ionic Team",
66
"homepage": "https://stenciljs.com/",

packages/vue/src/runtime.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -234,9 +234,9 @@ export const defineContainer = <Props, VModelType = string | number | boolean>(
234234
* was set as a static value (i.e. no v-model).
235235
*/
236236
if (props[MODEL_VALUE] !== EMPTY_PROP) {
237-
propsToAdd[modelProp] = props[MODEL_VALUE]
237+
propsToAdd[modelProp] = props[MODEL_VALUE];
238238
} else if (modelPropValue !== EMPTY_PROP) {
239-
propsToAdd[modelProp] = modelPropValue
239+
propsToAdd[modelProp] = modelPropValue;
240240
}
241241
}
242242

@@ -245,7 +245,7 @@ export const defineContainer = <Props, VModelType = string | number | boolean>(
245245
// of components that should become activatable and
246246
// focusable with router link.
247247
if (ROUTER_LINK_VALUE in props && props[ROUTER_LINK_VALUE] !== EMPTY_PROP) {
248-
propsToAdd.href = props[ROUTER_LINK_VALUE]
248+
propsToAdd.href = props[ROUTER_LINK_VALUE];
249249
}
250250

251251
/**

0 commit comments

Comments
 (0)