diff options
| author | Andreas Nedbal <andreas.nedbal@in2code.de> | 2022-05-01 17:55:17 +0200 |
|---|---|---|
| committer | Andreas Nedbal <andreas.nedbal@in2code.de> | 2022-05-01 17:55:17 +0200 |
| commit | 49b63154dfb819bef7ff05bf5bd3afd0c22335bb (patch) | |
| tree | 7519222914d1d6c0ec7cb542df5b04167c2f3cec /packages/client/src | |
| parent | chore(deps): bump postcss from 8.2.8 to 8.4.13 in /packages/client (#8588) (diff) | |
| download | misskey-49b63154dfb819bef7ff05bf5bd3afd0c22335bb.tar.gz misskey-49b63154dfb819bef7ff05bf5bd3afd0c22335bb.tar.bz2 misskey-49b63154dfb819bef7ff05bf5bd3afd0c22335bb.zip | |
fix(client): fix missing import of defineAsyncComponent in os.ts
Diffstat (limited to 'packages/client/src')
| -rw-r--r-- | packages/client/src/os.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/src/os.ts b/packages/client/src/os.ts index eada01bf20..06a8ff99dc 100644 --- a/packages/client/src/os.ts +++ b/packages/client/src/os.ts @@ -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'; |