POC frontend setup w/ static data.

This commit is contained in:
2021-01-03 16:35:54 +01:00
parent 446a50e6f7
commit d8b718273b
11 changed files with 312 additions and 0 deletions

36
frontend/home.vue Normal file
View File

@@ -0,0 +1,36 @@
<template>
<div class="container">
<h1>Kevin's lab</h1>
<router-view></router-view>
</div>
</template>
<script>
export default {
data() {
return {
message: "Home"
}
}
}
</script>
<style lang="scss">
@import "styles/global.scss";
body {
background-color: #f7f4ec;
color: #342519;
}
</style>
<style lang="scss" scoped>
.container {
margin: 2rem;
}
h1 {
font-size: 3rem;
text-transform: uppercase;
}
</style>