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

vue-element-ui-x

v1.2.0

Published

基于Vue 2 + Element UI的AI聊天组件库

Readme

Element-UI-X

开箱即用的企业级 AI 组件库(基于 Vue 2.x + Element-Ui)

📢 快速链接

| 资源类型 | 链接 | | ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | 文档 | 📖 开发文档 | | 在线演示 | 👁️ 在线预览 | | 代码仓库 | 🐙 GitHub📝 GitCode📝 Gitee | | NPM 包 | 📦 npm | | 问题反馈 | 🐛 GitHub Issues🐛 GitCode Issues🐛 Gitee Issues | | 交流讨论 | 🐒 交流群 |

🛠️ 核心特性

  • 企业级 AI 组件
  • 🚀 零配置集成
  • 📦 按需加载

📦 安装

# NPM (推荐)
npm install vue-element-ui-x

📚 使用案例

  1. 按需引入
<script>
  import { ElXTypewriter } from 'vue-element-ui-x';
</script>

<template>
  <div
    style="display: flex; flex-direction: column; height: 230px; justify-content: space-between;"
  >
    <el-x-typewriter
      content="这是一个基础打字效果演示,展示Typewriter组件的基本功能。"
      :typing="true"
      ref="basicDemo"
    />
  </div>
</template>
  1. 全局引入
// main.ts
import Vue from 'vue';
import ElementUI from 'element-ui';
import './assets/styles/reset.css';
import 'element-ui/lib/theme-chalk/index.css';

import ElementUIX from 'vue-element-ui-x';
import App from './App.vue';
import router from './router';

Vue.use(ElementUI);
Vue.use(ElementUIX);

Vue.config.productionTip = false;

new Vue({
  router,
  el: '#app',
  render: h => h(App),
});

🌟 已实现 组件 和 Mixins

| 组件名 | 描述 | 文档链接 | | ---------------------- | ----------------- | ----------------------------------------------------------------- | | Typewriter | 打字动画组件 | 📄 文档 | | Bubble | 气泡消息组件 | 📄 文档 | | BubbleList | 气泡消息列表 | 📄 文档 | | Conversations | 会话管理组件 | 📄 文档 | | Welcome | 欢迎组件 | 📄 文档 | | Prompts | 提示集组件 | 📄 文档 | | FilesCard | 文件卡片组件 | 📄 文档 | | Attachments | 上传附件组件 | 📄 文档 | | Sender | 智能输入框 | 📄 文档 | | Thinking | 思考中组件 | 📄 文档 | | ThoughtChain | 思考链组件 | 📄 文档 | | recordMixin | 语音识别 Mixins | 📄 文档 | | streamMixin | 流模式接口 Mixins | 📄 文档 | | sendMixin & XRequest | 流模式 Mixins | 📄 文档 |

🎯 开发计划 (每周更新)

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

🤝 参与贡献

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

详情可以移步 👉 开发指南

欢迎:

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

👥 社区支持