시리즈 메뉴 빈 페이지 추가

1. 무료 추천 시리즈
2. 새로운 시리즈
This commit is contained in:
Yu Sung 2025-01-22 21:09:26 +09:00
parent befe04c243
commit e1feff39f8
3 changed files with 28 additions and 0 deletions

View File

@ -90,6 +90,16 @@ const routes = [
name: 'ContentSeriesGenre', name: 'ContentSeriesGenre',
component: () => import(/* webpackChunkName: "series" */ '../views/Series/ContentSeriesGenre.vue') component: () => import(/* webpackChunkName: "series" */ '../views/Series/ContentSeriesGenre.vue')
}, },
{
path: '/content/series/new',
name: 'ContentSeriesNew',
component: () => import(/* webpackChunkName: "series" */ '../views/Series/ContentSeriesNew.vue')
},
{
path: '/content/series/recommend-free',
name: 'ContentSeriesRecommendFree',
component: () => import(/* webpackChunkName: "series" */ '../views/Series/ContentSeriesRecommendFree.vue')
},
{ {
path: '/promotion/event', path: '/promotion/event',
name: 'EventView', name: 'EventView',

View File

@ -0,0 +1,9 @@
<template>
<div>
새로운 시리즈
</div>
</template>
<style scoped>
</style>

View File

@ -0,0 +1,9 @@
<template>
<div>
무료 추천 시리즈
</div>
</template>
<style scoped>
</style>