2023-10-16 10:59:37 +08:00

13 lines
207 B
Vue

<template>
<div style="padding: 32px">hello world</div>
</template>
<script setup>
import { defineRouteMeta } from '@fesjs/fes';
defineRouteMeta({
name: 'index',
title: '首页',
});
</script>