juggl/juggl-vue/src/views/Home.vue

21 lines
324 B
Vue
Raw Normal View History

2020-12-20 17:27:26 +01:00
<template>
<LayoutNavbarPrivate>
Hey there
<b-link to="/login">Go to login</b-link>
</LayoutNavbarPrivate>
</template>
<script>
import LayoutNavbarPrivate from "@/components/layout/LayoutNavbarPrivate";
export default {
name: "Home",
components: {
LayoutNavbarPrivate
}
}
</script>
<style>
</style>