feat: add title
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 8s

This commit is contained in:
Thanaphon Frappet 2025-03-04 13:31:35 +07:00
parent 780a262979
commit b892924a18

View file

@ -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>