1
0
Files
gringotts/gringotts-frontend/pages/index/tab-data.js

16 lines
380 B
JavaScript

import {resourceAddDialog} from "../../components/resource/dialog-resource.js";
export function tabData() {
return {
title: '数据资源',
icon: 'fa fa-database',
body: [
{
type: 'action',
label: '',
icon: 'fa fa-plus',
...resourceAddDialog()
}
]
}
}