zhengyiming
6 天以前 d6ae9eb36186a924800d7e0433c3eb35c5ccb6f7
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>