reorganization of FileView

This commit is contained in:
Peter Papp
2021-08-20 09:04:56 +02:00
parent e13a2cd18f
commit c57a244ae1
13 changed files with 528 additions and 794 deletions
@@ -0,0 +1,36 @@
<template>
<div>
<ContextMenu>
</ContextMenu>
<FileBrowser/>
</div>
</template>
<script>
import FileBrowser from '/resources/js/components/FilesView/FileBrowser'
import ContextMenu from '/resources/js/components/FilesView/ContextMenu'
import { mapGetters } from 'vuex'
export default {
name: 'FilesView',
components: {
FileBrowser,
ContextMenu,
},
computed: {
...mapGetters([
]),
},
data() {
return {
}
},
created() {
this.$store.dispatch('getFolder', this.$route.params.id)
}
}
</script>