wechat-emoji-similar

0.1.2 • Public • Published

wechat-emoji-similar

intstall(安装)

npm

npm install wechat-emoji-similar --save

use(使用)

<template>
  <WechatEmojiSimilar @handlerEmoji="handlerEmoji" />
</template>
<script>
data(){
  return{
    value:'',
    html:''
  }
},
methods: {
  handlerEmoji({row}){
    // 选择emoji表情的微信编码
    console.log(row.code)
    // 编译成需要显示的html 在vue中提供了 $parseText(code)的方法 无需额外引用 你可以将它放到你需要的地方
    this.html = this.$parseText(this.value)
    console.log(this.$parseText(this.value))
    // 还有html转码为微信编码的方法,仅适用于组件 $parseText(code) 方法编译后的html
    console.log(this.$replaceEmoji(this.html))

  }
}
</script>

notice(注意)

  • 静态资源引用不成功的时候

    需要 copy 我的静态资源文件到 public 文件下,并且命名为 emoji_png

这是一个地址

project

github

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.1.21latest

Version History

VersionDownloads (Last 7 Days)Published
0.1.21
0.1.10
0.1.00

Package Sidebar

Install

npm i wechat-emoji-similar

Weekly Downloads

1

Version

0.1.2

License

ISC

Unpacked Size

586 kB

Total Files

130

Last publish

Collaborators

  • npmgjh