changes
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
<td>
|
||||
<span>{{ $stripHtml(v[name] || v.fullname || v.code || "n/a", 75) }}</span>
|
||||
<span
|
||||
v-if="checked[i] && notick !== true"
|
||||
v-if="checked[i] && !notick"
|
||||
class="icon right-3 has-background-inherit"
|
||||
>
|
||||
<Icon
|
||||
@@ -183,6 +183,7 @@ const props = defineProps({
|
||||
show: Object,
|
||||
notick: Boolean,
|
||||
inContext: Boolean,
|
||||
clearTrigger: Number,
|
||||
});
|
||||
|
||||
const emit = defineEmits(["selected"]);
|
||||
@@ -211,6 +212,13 @@ watch(
|
||||
{ deep: true },
|
||||
);
|
||||
|
||||
watch(
|
||||
() => props.clearTrigger,
|
||||
() => {
|
||||
checked.value = {};
|
||||
},
|
||||
);
|
||||
|
||||
function getdata() {
|
||||
currentPage.value = 1;
|
||||
array.value = $copy(props.data);
|
||||
|
||||
Reference in New Issue
Block a user