UNPKG

free-imui-neo

Version:

基于VUE3实现的即时通讯UI组件

35 lines (25 loc) 537 B
# Free IMUI Neo 基于 VUE 3.0 的 IM 聊天组件 #### 安装 > npm install free-imui-neo -S #### 使用 ```javascript npm i -S free-imui-neo // main.js or main.ts import FreeIMUI from 'free-imui-neo' import 'free-imui-neo/dist/index.css' const app = createApp(App) app.use(freeIMUI) app.mount('#app') <template> <free-im :userInfo="userInfo" ref="freeIM" /> </template> <script setup lang="ts"> //当前登录人 const userInfo = { id: '66', nickname: '', avatar: '', } </script> ```