21 lines
324 B
Vue
21 lines
324 B
Vue
|
<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>
|