mirror of
https://github.com/nextcloud/server.git
synced 2026-05-27 20:22:36 -04:00
Signed-off-by: Grigorii K. Shartsev <me@shgk.me> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
25 lines
448 B
Vue
25 lines
448 B
Vue
<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>
|