wupengfei
5 天以前 10089fbb4958ff4780c33bf2e51ec6f04024e2b6
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>