ваше сообщение коммита

This commit is contained in:
2025-07-16 17:25:58 +03:00
parent d952e89a26
commit 32acc60360
27 changed files with 539 additions and 138 deletions

View File

@@ -166,9 +166,29 @@ const routes = [
},
{
path: '/content',
name: 'content-page',
name: 'content-list',
component: () => import('../views/content/ContentListView.vue'),
},
{
path: '/content/create',
name: 'content-create',
component: () => import('../views/ContentPageView.vue'),
},
{
path: '/content/settings',
name: 'content-settings',
component: () => import('../views/content/ContentSettingsView.vue'),
},
{
path: '/content/page/:id',
name: 'page-view',
component: () => import('../views/content/PageView.vue'),
},
{
path: '/content/page/:id/edit',
name: 'page-edit',
component: () => import('../views/content/PageEditView.vue'),
},
];
const router = createRouter({