19 lines
341 B
Vue
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>
|