mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
29 lines
578 B
Vue
29 lines
578 B
Vue
<!--
|
|
- SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
- SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-->
|
|
<template>
|
|
<NcContent app-name="files">
|
|
<Navigation />
|
|
<FilesList />
|
|
</NcContent>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue'
|
|
|
|
import NcContent from '@nextcloud/vue/dist/Components/NcContent.js'
|
|
|
|
import Navigation from './views/Navigation.vue'
|
|
import FilesList from './views/FilesList.vue'
|
|
|
|
export default defineComponent({
|
|
name: 'FilesApp',
|
|
|
|
components: {
|
|
NcContent,
|
|
FilesList,
|
|
Navigation,
|
|
},
|
|
})
|
|
</script>
|