Files
SPDM/src/views/task/projectList/followProject.vue

21 lines
419 B
Vue
Raw Normal View History

2026-02-12 17:32:22 +08:00
<template>
2026-02-13 09:08:48 +08:00
<ProjectList :expandAction="actionList" />
2026-02-12 17:32:22 +08:00
</template>
<script setup lang="ts">
2026-02-13 09:08:48 +08:00
import { ref } from 'vue';
2026-02-12 17:32:22 +08:00
import ProjectList from './components/projectList.vue';
2026-02-13 09:08:48 +08:00
const actionList = ref<any>([
{
title: '取消关注',
type: 'danger',
needConfirm: true,
confirmTip: '确定取消关注吗?',
click: (row: any) => {
console.log('取消关注', row);
},
},
]);
2026-02-12 17:32:22 +08:00
</script>