fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

1import { createRouter, createWebHistory } from 'vue-router'; 2 3import TanstackExample from '@/views/TanstackExample.vue'; 4 5const router = createRouter({ 6 history: createWebHistory(import.meta.env.BASE_URL), 7 routes: [ 8 { 9 component: TanstackExample, 10 name: 'home', 11 path: '/', 12 }, 13 ], 14}); 15 16export default router;