nebula/plugins/vditor.js

83 lines
3.6 KiB
JavaScript
Raw Normal View History

2020-06-30 17:50:32 +08:00
import Vue from 'vue';
import VditorPreview from 'vditor/dist/method.min';
2020-07-31 16:17:12 +08:00
import Vditor from 'vditor';
2021-12-22 11:50:20 +08:00
let emoji = {
"+1": "👍",
"-1": "👎",
"100": "💯",
"Accept": "🉑",
"beer": "🍺",
"bug": "🐛",
"bulb": "💡",
"computer": "💻",
"construction": "🚧",
"construction_worker": "👷",
"construction_worker_man": "👷",
"construction_worker_woman": "👷‍♀",
"face_with_head_bandage": "🤕",
"face_with_thermometer": "🤒",
"fearful": "😨",
"flushed": "😳",
"frowning": "😦",
"frowning_face": "☹️",
"full_moon_with_face": "🌝",
"grimacing": "😬",
"grin": "😁",
"grinning": "😀",
"hankey": "💩",
"metal": "🤘",
"money_mouth_face": "🤑",
"nerd_face": "🤓",
"neutral_face": "😐",
"persevere": "😣",
"point_down": "👇",
"point_left": "👈",
"point_right": "👉",
"point_up_2": "👆",
"satisfied": "😆",
"sleeping": "😴",
"sleepy": "😪",
"slightly_frowning_face": "🙁",
"slightly_smiling_face": "🙂",
"smile": "😄",
"smiley": "😃",
"smiling_imp": "😈",
"smirk": "😏",
"sneezing_face": "🤧",
"sob": "😭",
"sparkler": "🎇",
"sparkles": "✨",
"stopwatch": "⏱",
"strawberry": "🍓",
"stuck_out_tongue": "😛",
"stuck_out_tongue_closed_eyes": "😝",
"stuck_out_tongue_winking_eye": "😜",
"sun_behind_large_cloud": "🌥",
"sun_behind_rain_cloud": "🌦",
"sun_behind_small_cloud": "🌤",
"sun_with_face": "🌞",
"sunflower": "🌻",
"sunglasses": "😎",
"sweat": "😓",
"sweat_smile": "😅",
"unamused": "😒",
"unlock": "🔓",
"upside_down_face": "🙃",
"v": "✌️",
"wink": "😉",
"wrench": "🔧",
"writing_hand": "✍️",
"x": "❌",
"yellow_heart": "💛",
"zipper_mouth_face": "🤐",
"zzz": "💤"
}
Vue.emoji = emoji
2020-07-31 16:17:12 +08:00
Vue.VditorPreview = VditorPreview;
Vue.Vditor = Vditor