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 🙏

© 2025 – Pkg Stats / Ryan Hefner

vue-element-plus-x

v1.3.98

Published

<div align="center"> <a href="https://element-plus-x.com"> <img src="https://cdn.element-plus-x.com/element-plus-x.png" alt="Element-Plus-X" width="180" class="logo" /> </a> </div>

Readme

LicenseGitHub starsnpm versionnpmenglish doc

English | 简体中文

🚀 Element-Plus-X

开箱即用的企业级 AI 组件库(基于 Vue 3 + Element-Plus)

📢 快速链接

| 资源类型 | 链接 | | ----------------- | -------------------------------------------------------------------------------------------------------------------------- | | 文档 | 📖 开发文档 | | 在线演示 | 👁️ 在线预览 | | 代码仓库 | 🐙 GitHub 🚠 Gitee | | NPM 包 | 📦 npm | | 问题反馈 | 🐛 提交 Bug | | 交流讨论 | 🐒 交流群 | | 模版项目 预览 | 👀 在线预览 | | 模版项目 源码 | 🐙 GitHub 🚠 Gitee |

🛠️ 核心特性

  • 企业级 AI 组件:内置聊天机器人、语音交互等场景化组件
  • 🚀 零配置集成:基于 Element-Plus 设计体系,开箱即用
  • 📦 按需加载:提供 Tree Shaking 优化

📦 安装

# NPM
npm install vue-element-plus-x

# PNPM(推荐)
pnpm install vue-element-plus-x

# Yarn
yarn install vue-element-plus-x

📚 使用案例

  1. 按需引入
<script setup>
import { BubbleList, Sender } from 'vue-element-plus-x';

const list = [
  {
    content: 'Hello, Element Plus X',
    role: 'user'
  }
];
</script>

<template>
  <div
    style="display: flex; flex-direction: column; height: 230px; justify-content: space-between;"
  >
    <BubbleList :list="list" />
    <Sender />
  </div>
</template>
  1. 全局引入
// main.ts
import { createApp } from 'vue';
import ElementPlusX from 'vue-element-plus-x';
import App from './App.vue';

const app = createApp(App);
// 使用 app.use() 全局引入
app.use(ElementPlusX);
app.mount('#app');
  1. CDN 引入
<!-- 该方法 有待测试 -->
<!-- CDN 引入 -->
<script src="https://unpkg.com/[email protected]/dist/umd/index.js"></script>

🌟 已实现 组件 和 Hooks

| 组件名 | 描述 | 文档链接 | | -------------------- | -------------------------------------- | ------------------------------------------------------------------ | | Typewriter | 打字动画组件 | 📄 文档 | | Bubble | 气泡消息组件 (拓展) | 📄 文档 | | BubbleList | 气泡消息列表 (拓展) | 📄 文档 | | Conversations | 会话管理组件 (拓展) | 📄 文档 | | Welcome | 欢迎组件 | 📄 文档 | | Prompts | 提示集组件 | 📄 文档 | | FilesCard | 文件卡片组件 | 📄 文档 | | Attachments | 上传附件组件 | 📄 文档 | | Sender | 智能输入框(含语音交互、内置指令操作) | 📄 文档 | | MentionSender | 指令输入框 (提及列表) | 📄 文档 | | Thinking | 思考中组件 (拓展) | 📄 文档 | | ThoughtChain | 思考链组件 | 📄 文档 | | useRecord | 浏览器内置语音识别 API Hooks | 📄 文档 | | useXStream | 流模式接口 Hooks | 📄 文档 | | useSend & XRequest | 流模式 hooks 的拆分 (拓展) | 📄 文档 |

🎯开发计划 (每周更新)

🎀我们会在 issue 、交流群 等多方面收集大家的遇到的问题,和需求场景,制定短期和长期的开发计划,查看详情请移步👉 开发计划

🤝 参与贡献

  1. Fork 仓库 → 2. 创建 Feature 分支 → 3. 提交 Pull Request

详情可以移步👉 开发指南

我们欢迎:

  • 🐛 Bug 修复
  • 💡 新功能提案
  • 📝 文档完善
  • 🎨 样式优化

👥 社区支持