feat(menu): 빈 메뉴일 때 기본 '소속 크리에이터' 메뉴 추가 및 라우트/페이지 생성

This commit is contained in:
Yu Sung
2026-04-13 17:04:28 +09:00
parent a288b406ac
commit 8ce660d45e
4 changed files with 60 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
<template>
<v-container fluid>
<v-row>
<v-col>
<h2>소속 크리에이터</h2>
<p class="mt-2 grey--text">
에이전트용 페이지입니다. 상세 내용은 추후에 추가될 예정입니다.
</p>
</v-col>
</v-row>
</v-container>
</template>
<script>
export default {
name: 'AgentCreators'
}
</script>
<style scoped>
</style>