first commit

This commit is contained in:
2024-02-28 16:03:19 -05:00
commit 54ee44ba66
84 changed files with 15919 additions and 0 deletions

29
src/pages/card/routes.ts Normal file
View File

@@ -0,0 +1,29 @@
import CardHome from '../card/home.vue';
import AddCardCreate from '../card/addcard.vue';
import EditCard from "./editcard.vue";
const cardRoutes = [
{
path: '/card',
name: 'cardhome',
component: CardHome,
},
{
path: '/card/add/:id',
name: 'cardadd',
component: AddCardCreate,
},
{
path: '/card/edit/:id',
name: 'cardedit',
component: EditCard,
},
]
export default cardRoutes
//sourceMappingURL=index.ts.map