zhengyiming
6 天以前 0945a585fc1d62545dd50d787154a3a15c09d34f
1
2
3
4
5
6
7
8
9
10
11
12
13
<template>
  <PageLayoutWithBg class="task-page-wrapper" title="任务">
    <InnerPage />
  </PageLayoutWithBg>
</template>
 
<script setup lang="ts">
import InnerPage from './InnerPage.vue';
 
defineOptions({
  name: 'task',
});
</script>