refactor(nc-gui): use lazy load and cleanup imports

This commit is contained in:
braks
2022-09-22 18:19:11 +02:00
parent 492812e28e
commit 4c29fa18ff
138 changed files with 986 additions and 778 deletions

View File

@@ -1,8 +1,11 @@
<script setup lang="ts">
import { ref, useGlobal } from '#imports'
const { feedbackForm } = useGlobal()
const showForm = ref(false)
// todo: why this timeout?
setTimeout(() => (showForm.value = true), 60000)
</script>