free-imui-neo
v0.1.26
Published
基于VUE3实现的即时通讯UI组件
Downloads
4
Maintainers
Readme
Free IMUI Neo
基于 VUE 3.0 的 IM 聊天组件
安装
npm install free-imui-neo -S
使用
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>