The Task API allows for an easy way to create long-lived tasks that
require reporting back to user with progress/logs. It will be used in
the upcoming game importing.
This commit is contained in:
DecDuck
2024-10-10 16:13:10 +11:00
parent f3672f81dd
commit 718f5ba514
8 changed files with 289 additions and 1 deletions
+3
View File
@@ -3,6 +3,7 @@
<UserHeader />
<div class="grow flex">
<NuxtPage />
{{ test }}
</div>
<UserFooter />
</content>
@@ -15,4 +16,6 @@ useHead({
return `Drop`;
},
});
const test = useTask("test");
</script>