forked from Drop-OSS/archived-drop-app
* fix: submillisecond cache hits * fix: async object loading to hand control back to renderer * fix: clippy
8 lines
137 B
Vue
8 lines
137 B
Vue
<template></template>
|
|
|
|
<script setup lang="ts">
|
|
const loading = useLoadingIndicator();
|
|
|
|
watch(loading.isLoading, console.log);
|
|
</script>
|