forked from mirrors/homebox
12 lines
149 B
Vue
12 lines
149 B
Vue
|
<template>
|
||
|
<div>Edit Me</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
definePageMeta({
|
||
|
layout: 'home',
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<style scoped></style>
|