add(components): 添加MyInput组件

This commit is contained in:
2025-12-12 22:42:47 +08:00
parent d90366e304
commit fe4a9173a4
17 changed files with 721 additions and 498 deletions
+2
View File
@@ -1,10 +1,12 @@
import { createRouter, createWebHistory } from 'vue-router'
import MainView from '@/views/Main.vue'
import TestView from '@/views/Test.vue'
const routes = [
{ path: '/auth/login', component: () => import('@/views/auth/Login.vue') },
{ path: '/', component: MainView },
{ path: '/index', component: MainView },
{ path: '/test', component: TestView },
]
const router = createRouter({