13 lines
184 B
Vue
13 lines
184 B
Vue
<template>
|
||
<div class="p-8">
|
||
<h2>index</h2>
|
||
<p>功能迁移中,请稍候...</p>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
defineOptions({
|
||
name: 'Index'
|
||
})
|
||
</script>
|