refactoring sorting and preview component

This commit is contained in:
Milos Holba
2020-12-17 12:25:08 +01:00
parent 5bc66d51be
commit b16f22b0eb
7 changed files with 133 additions and 306 deletions

View File

@@ -3,14 +3,14 @@
@contextmenu.prevent.capture="contextMenu($event, undefined)"
id="files-view">
<ContextMenu/>
<SortingAndPreview/>
<DesktopSortingAndPreview/>
<DesktopToolbar/>
<FileBrowser/>
</div>
</template>
<script>
import SortingAndPreview from '@/components/FilesView/SortingAndPreview'
import DesktopSortingAndPreview from '@/components/FilesView/DesktopSortingAndPreview'
import DesktopToolbar from '@/components/FilesView/DesktopToolbar'
import FileBrowser from '@/components/FilesView/FileBrowser'
import ContextMenu from '@/components/FilesView/ContextMenu'
@@ -20,7 +20,7 @@
export default {
name: 'FilesView',
components: {
SortingAndPreview,
DesktopSortingAndPreview,
DesktopToolbar,
FileBrowser,
ContextMenu,