test #56

Merged
klaus merged 14 commits from test into main 2025-02-09 13:25:36 +00:00
3 changed files with 28 additions and 0 deletions
Showing only changes of commit e1feff39f8 - Show all commits

View File

@ -90,6 +90,16 @@ const routes = [
name: 'ContentSeriesGenre',
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',
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>