All Projects → lenvonsam → vuejs-emoji

lenvonsam / vuejs-emoji

Licence: other
vue2.x emoji plugin, autoload fontawesome

Programming Languages

Vue
7211 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to vuejs-emoji

emojicodes
An extension to use emoji codes in your Sphinx documentation! 😍
Stars: ✭ 39 (+21.88%)
Mutual labels:  emoji
EmojiKeyBoard
自定义表情键盘(支持系统表情, 图片表情),仅供参考学习~
Stars: ✭ 36 (+12.5%)
Mutual labels:  emoji
animated-emoji-gen
The tool makes it easy to create animated GIFs of Slack custom emoji.
Stars: ✭ 53 (+65.63%)
Mutual labels:  emoji
vue-cli-plugin-chrome-ext
vue cli plugin that setup vue project for chrome extension
Stars: ✭ 86 (+168.75%)
Mutual labels:  vue-plugin
X-Browser-Update-Vue
A Vue.js browser-update plugin
Stars: ✭ 25 (-21.87%)
Mutual labels:  vue-plugin
favioli
Emoji Favicons for the web. 👊🤯
Stars: ✭ 55 (+71.88%)
Mutual labels:  emoji
WeiboEmoji
Weibo Emoji is a repository for saving and sharing most Emoji images that are used/were previously used by the app Weibo.
Stars: ✭ 17 (-46.87%)
Mutual labels:  emoji
EmojiReader
A simple tool to recognize Emoji in string. (JavaScript & Java)
Stars: ✭ 61 (+90.63%)
Mutual labels:  emoji
recyclebin
♻️ measures usage of a particular term on twitter
Stars: ✭ 21 (-34.37%)
Mutual labels:  emoji
emojityper
Github said "Error saving your changes: Description contains unicode characters above 0xffff" when I put the FACE LAUGHING WITH TEARS OF JOY emoji in this box
Stars: ✭ 76 (+137.5%)
Mutual labels:  emoji
md-file-tree
Generate markdown list of all the files in a directory. Now also with emoji 📂 📄
Stars: ✭ 130 (+306.25%)
Mutual labels:  emoji
emoji-unicode
🤔 Search & Replace unicode emojis. Supports Unicode 10
Stars: ✭ 20 (-37.5%)
Mutual labels:  emoji
whatsapp-bot
Made with Python and Selenium, can be used to send multiple messages and send messages as characters made of emojis
Stars: ✭ 34 (+6.25%)
Mutual labels:  emoji
catmoji-colr
Twemoji, but with cats! Unicode 13.1! 🐱
Stars: ✭ 41 (+28.13%)
Mutual labels:  emoji
emojis
An emoji management bot for Discord.
Stars: ✭ 18 (-43.75%)
Mutual labels:  emoji
emoji-data-python
Emoji toolkit for python. Parse emoji from colons and much more...
Stars: ✭ 39 (+21.88%)
Mutual labels:  emoji
gomoji
Helpful functions to work with emoji in Golang
Stars: ✭ 63 (+96.88%)
Mutual labels:  emoji
three-wise-monkeys
You've heard of the SKI combinators... How about the 🙊🙉🙊 combinators?
Stars: ✭ 27 (-15.62%)
Mutual labels:  emoji
noto-color-emoji-font
Color emoji SVGinOT font using Noto emoji, with multiple releases, such as Lollipop and Nougat. Linux/MacOS/Windows
Stars: ✭ 32 (+0%)
Mutual labels:  emoji
domino
a tool for collaging thoughts
Stars: ✭ 83 (+159.38%)
Mutual labels:  emoji

vuejs-emoji for Vuejs 2.x

Vue2.x emoji plugin and autoload fontawesome(^4.7.0) and bootstrap(^3.2.x)

Install

# install
$ npm install vuejs-emoji --save

Requirement Dependencies

1、Vue-cli

  • Vue-cli install
# install
$ npm install -g vue-cli
  • using cli create project
$ vue init webpack my-project

More Vue-cli docs

2、Emoji Resources Download

  • Download static.zip
  • Unzip static.zip file, then override project static folder Alt text

Usage

ES6

import Vue2Emoji from 'vuejs-emoji'
Vue.use(Vue2Emoji)

Using directive in template

<emoji-icon @select="selectIcon", :iconConfig="iconConfig"></emoji-icon>

SelectCallback & IconConfig

  • SelectCallback = selectIcon(val) SelectCallback function's val is a html content.
<div v-html="val"></div>
  • IconConfig is Object
  var iconConfig = {
    placement: 'top',
    size: '30px',
    name: 'fa-send', // font awesome icon name
    color: '#fff' // icon color: hex、rgb or rgba value
  }

Font awesome website

Detail IconConfig

key default type intro
placement 'top' String 'top'、'left'、'right'、'bottom'
size '30px' String also can use rem, eg: '1rem'
name 'fa-smile-o' String just use font awesome icon name
color '#278dff' String can use hex、rgb、rgba value

Live Demo

Alt text

Screen Capture

Alt text

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].