0.1.26 • Published 2 years ago

free-imui-neo v0.1.26

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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>