Files
comrelay/frontend/src/App.vue
T
2026-06-16 17:12:08 +09:00

11 lines
255 B
Vue

<script setup lang="ts">
// 최상위 레이아웃 — 라우터 뷰만 마운트, 도메인 별 레이아웃은 라우트 단위로 분리
import { RouterView } from 'vue-router'
</script>
<template>
<RouterView />
</template>
<style scoped></style>