This commit is contained in:
parent
780a262979
commit
b892924a18
1 changed files with 14 additions and 1 deletions
|
|
@ -1,11 +1,24 @@
|
|||
<script lang="ts" setup>
|
||||
// NOTE: Library
|
||||
import { computed, onMounted, reactive, ref, watch } from 'vue';
|
||||
|
||||
// NOTE: Components
|
||||
|
||||
// NOTE: Stores & Type
|
||||
import { useNavigator } from 'src/stores/navigator';
|
||||
|
||||
// NOTE: Variable
|
||||
|
||||
const navigatorStore = useNavigator();
|
||||
|
||||
onMounted(async () => {
|
||||
navigatorStore.current.title = 'report.title';
|
||||
navigatorStore.current.path = [{ text: '' }];
|
||||
});
|
||||
</script>
|
||||
<template></template>
|
||||
|
||||
<template>
|
||||
<!-- SEC: body content -->
|
||||
<article class="col surface-2 flex items-center justify-center"></article>
|
||||
</template>
|
||||
<style scoped></style>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue