mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 00:02:15 +00:00
37 lines
547 B
Vue
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>
|