mirror of
https://github.com/haexhub/haex-hub.git
synced 2025-12-17 22:40:51 +01:00
21 lines
399 B
Vue
21 lines
399 B
Vue
<template>
|
|
<div>
|
|
aaaa
|
|
<div class="h-full text-base-content flex bg-base-200">
|
|
<HaexExtensionCard
|
|
v-for="extension in extensionStore.availableExtensions"
|
|
v-bind="extension"
|
|
:key="extension.id"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
definePageMeta({
|
|
name: 'vaultOverview',
|
|
})
|
|
|
|
const extensionStore = useExtensionsStore()
|
|
</script>
|