webapp: Fix lint error
This commit is contained in:
parent
3d67d934c1
commit
ac4ddbe23d
@ -52,7 +52,11 @@ export default defineComponent({
|
|||||||
_countDownTimeout = undefined;
|
_countDownTimeout = undefined;
|
||||||
};
|
};
|
||||||
|
|
||||||
const countDown = ref(parseCountDown(props.modelValue));
|
var countDown = ref();
|
||||||
|
watch(() => props.modelValue, () => {
|
||||||
|
countDown.value = parseCountDown(props.modelValue);
|
||||||
|
});
|
||||||
|
|
||||||
const isAlertVisible = computed(() => props.modelValue || props.show);
|
const isAlertVisible = computed(() => props.modelValue || props.show);
|
||||||
|
|
||||||
onBeforeUnmount(() => {
|
onBeforeUnmount(() => {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user