Interface SAV

This commit is contained in:
Jonathan Chevalier
2023-07-06 18:39:07 +02:00
parent f3f90db859
commit 6a98b61f51
9 changed files with 218 additions and 157 deletions

View File

@@ -1,4 +1,13 @@
import {ref} from "vue";
import {nextTick, ref} from "vue";
export const showModal = ref(0)
export const hideModal = ref(0)
export const suspens = ref(false)
export const messages = ref([])
export const moveToBottom = async (id) => {
await nextTick()
const objDiv = document.getElementById(id);
objDiv.scrollTop = objDiv.scrollHeight;
}