wupengfei
6 天以前 9693020059f6bd566718bb79e793b0d0b1c03ea5
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>