Add a mockup for the add account view

This commit is contained in:
Rodolphe Bréard 2023-07-30 15:55:13 +02:00
parent 9734c64097
commit b968a43391
5 changed files with 135 additions and 26 deletions

14
src/router/index.js Normal file
View file

@ -0,0 +1,14 @@
import {createRouter, createMemoryHistory} from 'vue-router';
import MainView from '../views/MainView.vue';
import AddAccountView from '../views/AddAccountView.vue';
const router = createRouter({
history: createMemoryHistory(),
routes: [
{path: '/', component: MainView},
{path: '/add-account', component: AddAccountView},
]
});
export default router;