<!-- 通过 --> <script lang="ts" setup name="passed"> import { ref } from 'vue' import listPage from './listPage.vue' const buttoms = ref([{ name: '查看', type: 'primary' }]) </script> <template> <list-page name="已通过" :buttoms="buttoms" /> </template>