mirror of
https://gitee.com/ice-gl/icegl-three-vue-tres.git
synced 2025-04-04 22:22:42 +08:00
13 lines
207 B
Vue
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>
|