14 lines
358 B
Vue
14 lines
358 B
Vue
<script setup lang="ts">
|
|
import ReferencePreviewComponent from '~/components/ReferencePreviewComponent.vue';
|
|
import { ref } from 'vue';
|
|
import { useReferenceStore } from '~/stores/reference';
|
|
|
|
const items = ref(useReferenceStore().allItems);
|
|
</script>
|
|
|
|
<template>
|
|
<q-page padding>
|
|
<ReferencePreviewComponent :entries="items" />
|
|
</q-page>
|
|
</template>
|