parent
befe04c243
commit
e1feff39f8
|
@ -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',
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
새로운 시리즈
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
|
@ -0,0 +1,9 @@
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
무료 추천 시리즈
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
Loading…
Reference in New Issue