
Research
/Security News
11 Malicious NuGet Tools Pose as Game Cheats to Drop a Windows Host-Surveillance Payload
11 malicious NuGet tools pose as game cheats to deploy Windows payloads, track hosts, and use Google Sheets for telemetry and control.
@complex-suite/component-antd
Advanced tools
一套基于 Ant Design Vue v4 封装的复杂组件库,旨在与 @complex-suite/data 深度集成,帮助您快速构建功能强大的数据驱动型用户界面。
@complex-suite/data 的数据结构,通过数据字典即可驱动大部分 UI 的生成。TableView 组件,内置分页、排序、行选择、操作菜单等常用功能。SearchArea、EditArea、InfoArea 等组件,轻松应对搜索、编辑、详情展示等多种场景。quick 系列组件(如 QuickTable, QuickModal)提供了更高层次的抽象,进一步简化开发流程,提升开发效率。ModalView、ImageViewer、SingleImport、MultipleImport 等一系列开箱即用的通用组件。TableView: 核心表格组件,用于展示列表数据。支持复杂的列配置、排序、筛选、行选择和操作列。SearchArea: 搜索区域组件,用于构建数据筛选表单。EditArea / InfoArea: 编辑和详情展示组件,用于创建数据编辑表单和只读信息展示。ModalView: 模态框组件,封装了 Ant Design Vue 的 Modal,并集成了更便捷的菜单和布局管理。quick 系列: QuickTable, QuickSearch, QuickModal 等,这些组件将 @complex-suite/data 的数据管理能力与 UI 组件相结合,实现了更高程度的自动化。npm install @complex-suite/component-antd
以下是一个使用 TableView 的基本示例:
<template>
<TableView :list-data="userList" />
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import { TableView } from '@complex-suite/component-antd';
import { ComplexList } from '@complex-suite/data';
import userDictionary from './dictionary/user'; // 假设这是您的用户数据字典
export default defineComponent({
name: 'UserList',
components: {
TableView
},
setup() {
// 使用 @complex-suite/data 创建一个列表数据实例
const userList = new ComplexList(userDictionary);
// 加载数据
userList.loadData();
return {
userList
};
}
});
</script>
ant-design-vue: ^4.2.6dayjs: ^1.11.0vue: ^3.5.0@complex-suite/data@complex-suite/component@complex-suite/utils@complex-suite/pluginFAQs
a complex component by antd v4
We found that @complex-suite/component-antd demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
11 malicious NuGet tools pose as game cheats to deploy Windows payloads, track hosts, and use Google Sheets for telemetry and control.

Research
/Security News
4 compromised asyncapi packages deliver miasma botnet loader on macOS, Linux and Windows.

Research
/Security News
A compromised jscrambler npm release added a malicious preinstall hook that runs hidden native binaries on Linux, macOS, and Windows.