24 lines
301 B
Vue

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