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-chat-im

v1.1.66

Published

``` npm install vue-chat-im@latest -S ``` ##### <font color='red'>\* 提示:</font>装完插件后,需要在 ```package.json``` 中手动修改插件版本为 ```latest``` ``` eg: "vue-chat-im": "latest" ```

Downloads

1,377

Readme

vue-chat-im

1.安装

npm install vue-chat-im@latest -S
* 提示:装完插件后,需要在 package.json 中手动修改插件版本为 latest
eg: "vue-chat-im": "latest"

2.引入


import store from './store'
import ZjkjIm from "vue-chat-im"

Vue.use(ZjkjIm);
ZjkjIm.mergeStore(store); // vuex 注册im模块

3.使用

注意:确保imAccount和imToken都有值

 <zjkj-im
    :imAccount="imAccount"
    :imToken="imToken"
    :isShow="isShow"
    @close="closeIm"
 ></zjkj-im>

Props

| params | Description | type | default | | -------- | ---------------- | ------- | ------- | | imAccount | 用户imAccount | Stirng | 无 | | imToken | 用户imToken | String | 无 | | isShow | 显示隐藏窗口 | Boolean | 一定用局部变量控制显示隐藏 | | close | 关闭窗口回调 | Function | 无 |

Event

im注册了全局变量,可直接使用全局变量打开会话

1.交流:$imToChat(imAccount)
 this.$imToChat(imAccount) // 打开会话
 imAccount:为交流对象的imAccount
 
 兼容旧方法,通过zjkj-im组件的引用对象调用
 this.$store.commit("SEND_MESSAGE");    // 需先打开会话
 this.$nextTick(() => {
   this.$refs.zjkjImRef.findFriend(imAccount);
 });
2.分享:$imShareMsg(url)
this.$imShareMsg('https://www.xxx.com') // 打开选择用户,分享

3.使用initiateGroup

注意:该选择器仅处理选择人员、业务不处理 以下示例:分享调用选择器

 <initiateGroup
    title="立即分享"
    :orgstructure="['friend', 'group', 'recent', 'getAllOrg']"
    :isyourSelf="false"
    :forward="true"
    @determine="determine"
    @closeCreateChatComponent=“closeCreateChatComponent”
 ></initiateGroup>

Props

| params | Description | type | default | | -------- | ---------------- | ------- | ------- | | title | 选择器title | Stirng | 无 | | orgstructure | 选择器列表展示顺序 | Array | ["friend", "getAllOrg"] | | isyourSelf | 是否包含自己 | Boolean | true | | forward | 是否为转发 | Boolean | false | | determine | 确认回调 | Function | 无 | | closeCreateChatComponent | 取消回调 | Function | 无 |

Props