Files
vuefilemanager/resources/js/views/FileView/Home/Files.vue
2021-08-20 09:04:56 +02:00

37 lines
547 B
Vue

<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>