vueless 0.0.635 → 0.0.636
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -57,6 +57,10 @@ watchEffect(() => {
|
|
|
57
57
|
}, Number(props.debounce));
|
|
58
58
|
});
|
|
59
59
|
|
|
60
|
+
watchEffect(() => {
|
|
61
|
+
localValue.value = props.modelValue;
|
|
62
|
+
});
|
|
63
|
+
|
|
60
64
|
function onUpdateValue(value: string) {
|
|
61
65
|
localValue.value = value;
|
|
62
66
|
|
|
@@ -151,8 +155,8 @@ const {
|
|
|
151
155
|
@click="onClickClear"
|
|
152
156
|
/>
|
|
153
157
|
|
|
154
|
-
<!--
|
|
155
|
-
@slot Use it to add something after the text.
|
|
158
|
+
<!--
|
|
159
|
+
@slot Use it to add something after the text.
|
|
156
160
|
@binding {string} icon-name
|
|
157
161
|
-->
|
|
158
162
|
<slot
|