feat(agent): 사이드바에 ‘에이전트 관리’ 메뉴 및 라우트/기본 뷰 추가
- router: /agent/list, /agent/settlement-ratio 라우트 등록 - SideMenu: ‘크리에이터 관리’ 바로 아래 ‘에이전트 관리’ 섹션 동적 삽입 - views: AgentList.vue, AgentSettlementRatio.vue 스텁 추가
This commit is contained in:
19
src/views/Agent/AgentList.vue
Normal file
19
src/views/Agent/AgentList.vue
Normal file
@@ -0,0 +1,19 @@
|
||||
<template>
|
||||
<v-container fluid>
|
||||
<v-row>
|
||||
<v-col cols="12">
|
||||
<h2>에이전트 리스트</h2>
|
||||
<p>에이전트 목록을 관리합니다. (구현 예정)</p>
|
||||
</v-col>
|
||||
</v-row>
|
||||
</v-container>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'AgentList',
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
</style>
|
||||
Reference in New Issue
Block a user