diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-09-06 18:21:49 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-09-06 18:21:49 +0900 |
| commit | a9e13693a593ff1fb4b2ed1f2e1cb90a8ef7bd3b (patch) | |
| tree | de951d9242addd6195c20c23ce6cdf853884760f /packages/client/src/os.ts | |
| parent | refactor(client): use setup syntax (diff) | |
| download | misskey-a9e13693a593ff1fb4b2ed1f2e1cb90a8ef7bd3b.tar.gz misskey-a9e13693a593ff1fb4b2ed1f2e1cb90a8ef7bd3b.tar.bz2 misskey-a9e13693a593ff1fb4b2ed1f2e1cb90a8ef7bd3b.zip | |
refactor(client): refactor file name and directory structure
Diffstat (limited to 'packages/client/src/os.ts')
| -rw-r--r-- | packages/client/src/os.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/client/src/os.ts b/packages/client/src/os.ts index e014eb529e..515fc47819 100644 --- a/packages/client/src/os.ts +++ b/packages/client/src/os.ts @@ -514,7 +514,7 @@ export function popupMenu(items: MenuItem[] | Ref<MenuItem[]>, src?: HTMLElement }) { return new Promise((resolve, reject) => { let dispose; - popup(defineAsyncComponent(() => import('@/components/ui/popup-menu.vue')), { + popup(defineAsyncComponent(() => import('@/components/MkPopupMenu.vue')), { items, src, width: options?.width, @@ -535,7 +535,7 @@ export function contextMenu(items: MenuItem[] | Ref<MenuItem[]>, ev: MouseEvent) ev.preventDefault(); return new Promise((resolve, reject) => { let dispose; - popup(defineAsyncComponent(() => import('@/components/ui/context-menu.vue')), { + popup(defineAsyncComponent(() => import('@/components/MkContextMenu.vue')), { items, ev, }, { |