feat(assets): new assets loading system (currently only for images)

This commit is contained in:
2025-12-17 12:28:48 +01:00
parent 05398d5252
commit b85899617b
106 changed files with 359 additions and 366 deletions

8
app/pages/test.vue Normal file
View File

@@ -0,0 +1,8 @@
<script setup lang="ts">
const { isReady } = useAssets();
</script>
<template>
<LoadingScreen v-if="!isReady" />
<p v-else>ok</p>
</template>