<template>
<main>
<div id="login">
Let's log in
</div>
</main>
</template>
<style>
body { background: red }
</style>
<script>
'use strict';
export default {
name: 'Login',
data() {
return {
}
},
updated() {
},
created() {
},
mounted() {
},
methods: {
}
}
</script>