its_ui_vite 1.0.1 → 1.0.2

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "its_ui_vite",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "main": "./src/libIndex.js",
5
5
  "module": "./src/libIndex.js",
6
6
  "files": [
@@ -163,7 +163,7 @@ const foundOptions = computed(() => {
163
163
  return props.options.filter(({text}) => text && reg.test(text))
164
164
  })
165
165
 
166
- watch(props.modelValue, (options: TOption[]) => {
166
+ watch(() => props.modelValue, (options: TOption[]) => {
167
167
  activeOptions.value.clear();
168
168
  oldActiveOptions.value.clear();
169
169