@tekkare/auriga 0.1.13 → 0.1.14
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/dist/module.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
:show_amount="show_amount"
|
|
9
9
|
:amount_value="del_table.length"
|
|
10
10
|
id="simple-select-complex"
|
|
11
|
-
@click
|
|
11
|
+
@click="changeDisplay()"
|
|
12
12
|
:class="isDisplay ? 'open' : ''"
|
|
13
13
|
>
|
|
14
14
|
<span
|
|
@@ -200,7 +200,8 @@ import {
|
|
|
200
200
|
ref,
|
|
201
201
|
computed,
|
|
202
202
|
watch,
|
|
203
|
-
defineComponent
|
|
203
|
+
defineComponent,
|
|
204
|
+
onUnmounted
|
|
204
205
|
} from "vue";
|
|
205
206
|
export default defineComponent({
|
|
206
207
|
name: "argComplexSelect",
|
|
@@ -472,6 +473,9 @@ export default defineComponent({
|
|
|
472
473
|
save_table.value.add = add_table.value;
|
|
473
474
|
save_table.value.del = del_table.value;
|
|
474
475
|
}
|
|
476
|
+
onUnmounted(() => {
|
|
477
|
+
document?.removeEventListener("click", close);
|
|
478
|
+
});
|
|
475
479
|
return {
|
|
476
480
|
add_table,
|
|
477
481
|
del_table,
|