Skip to content

Commit

Permalink
add paint router
Browse files Browse the repository at this point in the history
  • Loading branch information
Germey committed Sep 30, 2023
1 parent 813fd94 commit e50892c
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 4 deletions.
5 changes: 2 additions & 3 deletions src/components/common/Navigator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import { defineComponent } from 'vue';
import { ElTooltip, ElButton } from 'element-plus';
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
import { ROUTE_CHAT_INDEX } from '@/router/constants';
import { ROUTE_CHAT_INDEX, ROUTE_PAINT_INDEX } from '@/router/constants';
export default defineComponent({
name: 'Navigator',
Expand All @@ -34,7 +34,7 @@ export default defineComponent({
},
{
route: {
name: 'midjourney-index'
name: ROUTE_PAINT_INDEX
},
icon: 'fa-solid fa-palette'
}
Expand All @@ -57,7 +57,6 @@ export default defineComponent({
width: 40px;
height: 40px;
margin-bottom: 10px;
// border-radius: 5px;
.button {
width: 40px;
height: 40px;
Expand Down
3 changes: 3 additions & 0 deletions src/pages/paint/Index.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<template>
<div>hi</div>
</template>
3 changes: 3 additions & 0 deletions src/router/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@ export const ROUTE_AUTH_CALLBACK = 'auth-callback';
export const ROUTE_CHAT_INDEX = 'chat-index';
export const ROUTE_CHAT_CONVERSATION = 'chat-conversation';

export const ROUTE_PAINT_INDEX = 'paint-index';
export const ROUTE_PAINT_HISTORY = 'paint-history';

export const ROUTE_CONVERSATION_NEW = 'conversation-new';
export const ROUTE_CONVERSATION_DETAIL = 'conversation-detail';
4 changes: 3 additions & 1 deletion src/router/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import auth from './auth';
import conversation from './conversation';
import store from '@/store';
import chat from './chat';
import paint from './paint';
import { ROUTE_AUTH_LOGIN, ROUTE_CONVERSATION_NEW, ROUTE_INDEX } from './constants';

const routes = [
Expand All @@ -13,7 +14,8 @@ const routes = [
name: ROUTE_CONVERSATION_NEW
}
},
chat
chat,
paint
];

const router = createRouter({
Expand Down
13 changes: 13 additions & 0 deletions src/router/paint.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { ROUTE_PAINT_INDEX } from './constants';

export default {
path: '/paint',
component: () => import('@/layouts/Main.vue'),
children: [
{
path: '',
name: ROUTE_PAINT_INDEX,
component: () => import('@/pages/paint/Index.vue')
}
]
};

0 comments on commit e50892c

Please sign in to comment.