Added stash creation. Added dialog framework.

This commit is contained in:
2024-03-26 04:14:42 +01:00
parent 9de289a0fb
commit 68b9658ba6
9 changed files with 377 additions and 82 deletions

View File

@@ -61,8 +61,6 @@ onMounted(() => {
events.on('scrollUp', () => { content.value.scrollTop = 0; });
events.on('feedback', async (event) => {
console.log(event);
feedback.value = event;
await nextTick();
@@ -87,7 +85,7 @@ onMounted(() => {
opacity: 0,
},
], {
duration: 3000,
duration: event.type === 'error' ? 5000 : 3000,
easing: 'ease-in-out',
});
});