Update misskey-flavored-markdown.ts

This commit is contained in:
syuilo 2018-11-16 17:55:48 +09:00
parent fa66b79e2d
commit a2549192ca
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -1,11 +1,11 @@
import Vue, { VNode } from 'vue';
import { length } from 'stringz';
import MkFormula from './formula.vue';
import parse from '../../../../../mfm/parse';
import getAcct from '../../../../../misc/acct/render';
import MkUrl from './url.vue';
import MkGoogle from './google.vue';
import { concat } from '../../../../../prelude/array';
import MkFormula from './formula.vue';
import MkGoogle from './google.vue';
export default Vue.component('misskey-flavored-markdown', {
props: {
@ -201,6 +201,7 @@ export default Vue.component('misskey-flavored-markdown', {
}
case 'math': {
//const MkFormula = () => import('./formula.vue').then(m => m.default);
return [createElement(MkFormula, {
props: {
formula: token.formula
@ -209,6 +210,7 @@ export default Vue.component('misskey-flavored-markdown', {
}
case 'search': {
//const MkGoogle = () => import('./google.vue').then(m => m.default);
return [createElement(MkGoogle, {
props: {
q: token.query