init project

This commit is contained in:
2023-07-02 21:23:27 +02:00
commit 03a8a0eef5
30 changed files with 2609 additions and 0 deletions

16
src/router.js Normal file
View File

@@ -0,0 +1,16 @@
import { createRouter, createWebHistory } from 'vue-router';
import Home from './views/Home.vue';
export default createRouter({
history: createWebHistory(),
routes: [
{
path: '/',
component: Home,
},
{
path: '/show/:token',
component: Home,
}
],
});