Acid Chicken (硫酸鶏)
2018-11-05 13:23:26 +09:00
parent 9719387bee
commit b7f10fdc10
2 changed files with 15 additions and 6 deletions

View File

@@ -1,5 +1,4 @@
import Vue, { VNode } from 'vue';
import * as emojilib from 'emojilib';
import { length } from 'stringz';
import parse from '../../../../../mfm/parse';
import getAcct from '../../../../../misc/acct/render';
@@ -189,8 +188,10 @@ export default Vue.component('misskey-flavored-markdown', {
case 'emoji': {
const { emoji } = token;
const { customEmojis } = this;
return [createElement('mk-emoji', {
attrs: { emoji }
attrs: { emoji },
props: { customEmojis }
})];
}