diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2024-02-02 08:16:01 +0100 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2024-02-07 07:57:23 +0000 |
commit | d50127f0937fda1f1db730b74cc243ffcd678bca (patch) | |
tree | c2f24c6acd2129230794fb0a1052780080bc6006 /apps/files/src/components/FileEntryGrid.vue | |
parent | 6e0499461dbcd2a9c43ef0d407e037e6c5f27a81 (diff) | |
download | nextcloud-server-d50127f0937fda1f1db730b74cc243ffcd678bca.tar.gz nextcloud-server-d50127f0937fda1f1db730b74cc243ffcd678bca.zip |
fix(files): setup cannot be in mixins
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files/src/components/FileEntryGrid.vue')
-rw-r--r-- | apps/files/src/components/FileEntryGrid.vue | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/apps/files/src/components/FileEntryGrid.vue b/apps/files/src/components/FileEntryGrid.vue index 1d10f3d2948..9d332491bea 100644 --- a/apps/files/src/components/FileEntryGrid.vue +++ b/apps/files/src/components/FileEntryGrid.vue @@ -75,6 +75,11 @@ <script lang="ts"> import { defineComponent } from 'vue' +import { useActionsMenuStore } from '../store/actionsmenu.ts' +import { useDragAndDropStore } from '../store/dragging.ts' +import { useFilesStore } from '../store/files.ts' +import { useRenamingStore } from '../store/renaming.ts' +import { useSelectionStore } from '../store/selection.ts' import FileEntryMixin from './FileEntryMixin.ts' import FileEntryActions from './FileEntry/FileEntryActions.vue' import FileEntryCheckbox from './FileEntry/FileEntryCheckbox.vue' @@ -97,6 +102,21 @@ export default defineComponent({ inheritAttrs: false, + setup() { + const actionsMenuStore = useActionsMenuStore() + const draggingStore = useDragAndDropStore() + const filesStore = useFilesStore() + const renamingStore = useRenamingStore() + const selectionStore = useSelectionStore() + return { + actionsMenuStore, + draggingStore, + filesStore, + renamingStore, + selectionStore, + } + }, + data() { return { gridMode: true, |