add(IFriendService):完善好友关系接口

This commit is contained in:
2025-11-04 16:09:43 +08:00
parent 76619c7785
commit e9feb6e036
9 changed files with 1239 additions and 595 deletions
+6 -1
View File
@@ -1,6 +1,11 @@
import { createRouter, createWebHistory } from 'vue-router'
import MainView from '@/views/Main.vue'
const routes = [{ path: '/auth/login', component: () => import('@/views/auth/Login.vue') }]
const routes = [
{ path: '/auth/login', component: () => import('@/views/auth/Login.vue') },
{ path: '/', component: MainView },
{ path: '/index', component: MainView },
]
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),