mirror of
https://github.com/haexhub/haex-hub.git
synced 2025-12-16 22:20:51 +01:00
16 lines
255 B
Vue
16 lines
255 B
Vue
<template>
|
|
<div class="h-full"></div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
definePageMeta({
|
|
name: "vaultOverview",
|
|
});
|
|
|
|
const extensionStore = useExtensionsStore();
|
|
|
|
onMounted(async () => {
|
|
await extensionStore.loadExtensionsAsync();
|
|
});
|
|
</script>
|