23 lines
271 B
Vue

<template>
<h1>slt</h1>
</template>
<script>
export default {
title: 'Home',
options: {
auth: false,
},
data: () => ({}),
head: () => ({
title: 'Home',
}),
}
</script>
<style>
body {
background-color: #1565c0;
}
</style>