Merge pull request #8593 from pixeldesu/fix/os-defineasync

Fix missing import of defineAsyncComponent in os.ts
This commit is contained in:
tamaina 2022-05-02 13:40:42 +09:00 committed by GitHub
commit 8a5a99f01b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
// TODO: なんでもかんでもos.tsに突っ込むのやめたいのでよしなに分割する
import { Component, markRaw, Ref, ref } from 'vue';
import { Component, markRaw, Ref, ref, defineAsyncComponent } from 'vue';
import { EventEmitter } from 'eventemitter3';
import insertTextAtCursor from 'insert-text-at-cursor';
import * as Misskey from 'misskey-js';