mirror of
https://git.hmsn.ink/kospo/svcm/dmz.git
synced 2026-03-20 14:23:32 +09:00
20 lines
365 B
Vue
20 lines
365 B
Vue
<script setup lang="ts">
|
|
|
|
const pageTitle = useVueroContext<string>('page-title')
|
|
onMounted(() => {
|
|
pageTitle.value = '가격조사'
|
|
})
|
|
|
|
useHead({
|
|
title: '소액계약관리 - 가격조사',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="page-content is-relative tabs-wrapper is-slider is-squared is-inverted is-navbar-lg"
|
|
>
|
|
<Contract />
|
|
</div>
|
|
</template>
|