refactor: everything to nuxt.js
This commit is contained in:
13
app/pages/reference/index.vue
Normal file
13
app/pages/reference/index.vue
Normal file
@@ -0,0 +1,13 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user