directory list context menu

This commit is contained in:
2025-07-15 16:20:47 +02:00
parent 5631158b72
commit 672cfbee11
7 changed files with 64 additions and 12 deletions

View File

@@ -15,3 +15,14 @@ export const useWarrenStore = defineStore<
export const useWarrenRoute = () =>
computed(() => useRoute().path.split('/warrens/')[1]);
export const useCreateDirectoryDialog = defineStore('create_directory_dialog', {
state: () => ({
open: false,
}),
actions: {
openDialog() {
this.open = true;
},
},
});