mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 11:43:41 +09:00
30 lines
564 B
Vue
30 lines
564 B
Vue
<script setup lang="ts">
|
|
import Navbar from '/src/layouts/navbar.vue'
|
|
|
|
definePage({
|
|
// all child pages will inherit this metadata
|
|
meta: {
|
|
requiresAuth: true,
|
|
},
|
|
})
|
|
const breadcrumb = [
|
|
{
|
|
label: '가격조사',
|
|
hideLabel: true,
|
|
// use external links
|
|
link: 'https://vuero.cssninja.io/',
|
|
},
|
|
{
|
|
label: '가격조사',
|
|
// or generate a router link with 'to' props
|
|
to: '/components/',
|
|
}
|
|
]
|
|
</script>
|
|
|
|
<template>
|
|
<Navbar>
|
|
<VBreadcrumb :items="breadcrumb" separator="succeeds" />
|
|
<RouterView />
|
|
</Navbar>
|
|
</template> |