Files
SPDM/src/views/task/projectList/allProject.vue
2026-02-13 09:08:48 +08:00

19 lines
341 B
Vue

<template>
<ProjectList :expandAction="actionList" />
</template>
<script setup lang="ts">
import { ref } from 'vue';
import ProjectList from './components/projectList.vue';
const actionList = ref<any>([
{
title: '关注',
type: 'primary',
click: (row: any) => {
console.log('关注', row);
},
},
]);
</script>