import { defineComponent } from 'vue' import { NButton } from 'naive-ui' import { PlusOutlined } from '@vicons/antd' import { $t } from '@locales/index' import { useCAManageController } from '../useController' import EmptyState from '@components/TableEmptyState' import BaseComponent from '@components/BaseLayout' /** * ACME账户管理模态框组件 */ export default defineComponent({ name: 'CAManageModal', props: { type: { type: String, default: '', }, }, setup(props) { const { TableComponent, PageComponent, handleOpenAddForm, total } = useCAManageController(props) return () => ( ( {$t('t_4_1747903685371')} ), content: () => (
, }} />
), footerRight: () => (
( {$t('t_15_1745227839354')} {total.value} {$t('t_16_1745227838930')} ), }} />
), }} /> ) }, })