Add Signin View

This commit is contained in:
Hubert Van De Walle 2020-04-12 16:41:40 +02:00
parent af1d01e4a3
commit f06f4b849d

18
web/src/views/Signin.vue Normal file
View File

@ -0,0 +1,18 @@
<template>
<div id="app">
<Navbar/>
<b-container class="mt-5">
</b-container>
</div>
</template>
<script>
import Navbar from "@/components/Navbar";
export default {
name: 'Home',
components: {
Navbar
}
}
</script>