npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

ai-table-components

v1.0.1

Published

完整的Vue3+ElementPlus列表管理组件库

Downloads

198

Readme

AI Table Components

English | 简体中文

完整的 Vue3 + Element Plus 列表管理组件库

一套功能强大、易于使用的表格和表单组件系统,专为 Vue3 和 Element Plus 设计,提供开箱即用的列表管理、搜索、分页、导入、表单等完整功能。

📚 快速开始 | 📖 完整文档 | 常见问题


🚀 5 分钟快速开始

# 1. 安装
npm install ai-table-components

# 2. 使用
import { AiTableModules } from 'ai-table-components'
import 'ai-table-components/dist/style.css'

详细步骤请查看 快速开始指南


📖 文档导航

核心文档

开发文档

项目信息


✨ 特性

  • 🚀 开箱即用 - 完整的列表管理解决方案
  • 📦 组件丰富 - 表格、搜索、分页、导入、表单等全套组件
  • 🎨 样式优雅 - 基于 Element Plus,界面美观现代
  • 🔧 高度可配置 - 灵活的配置选项,满足各种业务需求
  • 📱 响应式设计 - 自适应各种屏幕尺寸
  • 🎯 TypeScript 支持 - 提供类型定义(计划中)
  • 🌍 按需导入 - 支持 tree-shaking,减小打包体积

📦 安装

npm install ai-table-components
# 或
yarn add ai-table-components
# 或
pnpm add ai-table-components

前置依赖

npm install vue@^3.3.0 element-plus@^2.0.0

🔨 基本使用

完整引入

import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import AiTableComponents from 'ai-table-components'
import 'ai-table-components/dist/style.css'

const app = createApp(App)
app.use(ElementPlus)
app.use(AiTableComponents)
app.mount('#app')

按需引入

<template>
  <AiTableModules 
    :data="tableData" 
    :headers="headers"
  />
</template>

<script setup>
import { ref } from 'vue'
import { AiTableModules } from 'ai-table-components'
import 'ai-table-components/dist/style.css'

const tableData = ref([
  { id: 1, name: '张三', age: 25 }
])

const headers = ref([
  { prop: 'id', label: 'ID' },
  { prop: 'name', label: '姓名' },
  { prop: 'age', label: '年龄' }
])
</script>

📋 主要组件

AiTableModules - 主表格组件

功能完整的表格组件,包含搜索、分页、排序、导出等功能。

AddReuse - 表单组件

抽屉式表单组件,支持新增和编辑功能。

更多组件

  • SearchForm - 搜索表单
  • ImportComponent - 数据导入
  • TagInput - 标签输入
  • SettingsHeaders - 表头设置
  • ... 更多

详见 API 文档


🛠️ 开发指南

克隆项目

git clone https://github.com/yourusername/ai-table-components.git
cd ai-table-components

安装依赖

npm install

构建

npm run build

检查构建

npm run check-build

准备发布

npm run prepare-publish

🤝 贡献

欢迎提交 Issue 和 Pull Request!

查看 贡献指南 了解详情。


📄 许可证

MIT License


🔗 相关链接


💬 支持

如有问题或建议:

  1. 查看 常见问题
  2. 提交 Issue
  3. 参与 讨论

Made with ❤️