You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
502 B
Vue

<template>
<div class="row mx-1 justify-content-center">
<div class="d-none d-lg-block col-3">
<SideMenu />
</div>
<FileList
class="col"
:path="$route.hash.slice(1)"
@newPath="(path) => $router.push(`#${path}`)"
/>
</div>
</template>
<script setup lang="ts">
import FileList from '@/components/files/FileList.vue';
import SideMenu from '@/components/SideMenu.vue';
import { useWebdavStore } from '@/store/webdav';
const store = useWebdavStore();
</script>