Add a mockup for the add account view
This commit is contained in:
parent
9734c64097
commit
b968a43391
5 changed files with 135 additions and 26 deletions
14
src/router/index.js
Normal file
14
src/router/index.js
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue