vue3: 非同期コンポーネント読み込みの移行 (#6580)

* migrate async components

* routerとwidgetsも
This commit is contained in:
Xeltica
2020-07-24 18:24:41 +09:00
committed by GitHub
parent f9e350b041
commit 0bf4c5cb29
13 changed files with 48 additions and 50 deletions

View File

@@ -247,7 +247,6 @@ export default Vue.component('misskey-flavored-markdown', {
}
case 'mathInline': {
//const MkFormula = () => import('./formula.vue').then(m => m.default);
return [createElement(MkFormula, {
key: Math.random(),
props: {
@@ -258,7 +257,6 @@ export default Vue.component('misskey-flavored-markdown', {
}
case 'mathBlock': {
//const MkFormula = () => import('./formula.vue').then(m => m.default);
return [createElement(MkFormula, {
key: Math.random(),
props: {
@@ -269,7 +267,6 @@ export default Vue.component('misskey-flavored-markdown', {
}
case 'search': {
//const MkGoogle = () => import('./google.vue').then(m => m.default);
return [createElement(MkGoogle, {
key: Math.random(),
props: {