24 lines
426 B
Vue
24 lines
426 B
Vue
<template>
|
|
<Content app-name="app">
|
|
<AppNavigation />
|
|
<AppContent>
|
|
<router-view />
|
|
</AppContent>
|
|
</Content>
|
|
</template>
|
|
|
|
<script>
|
|
import Content from '@nextcloud/vue/dist/Components/Content'
|
|
import AppNavigation from './components/Navigation'
|
|
import AppContent from '@nextcloud/vue/dist/Components/AppContent'
|
|
|
|
export default {
|
|
name: 'App',
|
|
components: {
|
|
Content,
|
|
AppNavigation,
|
|
AppContent,
|
|
},
|
|
}
|
|
</script>
|