更新记录
1.0(2023-02-03) 下载此版本
无
平台兼容性
Vue2 | Vue3 |
---|---|
√ | × |
App | 快应用 | 微信小程序 | 支付宝小程序 | 百度小程序 | 字节小程序 | QQ小程序 |
---|---|---|---|---|---|---|
× | × | × | × | × | × | × |
钉钉小程序 | 快手小程序 | 飞书小程序 | 京东小程序 |
---|---|---|---|
× | × | × | × |
H5-Safari | Android Browser | 微信浏览器(Android) | QQ浏览器(Android) | Chrome | IE | Edge | Firefox | PC-Safari |
---|---|---|---|---|---|---|---|---|
× | × | × | × | × | × | × | × | × |
方法
inputEmoji(emo) emoji输出事件
delEmoji() 删除事件
sendEmoji() 发送事件
使用方法
//html
<template>
<ComEmoji @inputEmo="inputEmoji" @delEmo="delEmoji" @sendEmo="sendEmoji"/>
</template>
//js
<script>
import ComEmoji from "@/components/leyozt-emoji/leyozt-emoji.vue";
export default {
components: {ComEmoji},
data() {
return{
textareaVal: '',
}
},
methods: {
//输入事件
inputEmoji(emo) {
this.textareaVal += emo;
},
//删除事件
delEmoji() {
if(this.textareaVal.length > 1) {
this.textareaVal = this.textareaVal.substr(0, this.textareaVal.length-2);
}
},
//发送事件
sendEmoji() {
console.log(this.textareaVal);
this.textareaVal='';
}
},
}
</script>