9 lines
254 B
Vue
Raw Normal View History

2022-03-11 15:46:11 -08:00
<template>
<header>
<img alt="Vue logo" class="logo" src="./assets/logo.svg" width="125" height="125" />
2022-10-31 20:58:07 +01:00
<router-link to="/">Login</router-link>
<router-link to="/dashboard">Dashboard</router-link>
2022-03-11 15:46:11 -08:00
</header>
2022-10-31 20:58:07 +01:00
<router-view />
2022-03-11 15:46:11 -08:00
</template>