19 lines
350 B
Vue
19 lines
350 B
Vue
<template>
|
|
<Content app-name="app">
|
|
<AppContent>
|
|
<div>This is the content</div>
|
|
</AppContent>
|
|
</Content>
|
|
</template>
|
|
<script>
|
|
import Content from '@nextcloud/vue/dist/Components/Content'
|
|
import AppContent from '@nextcloud/vue/dist/Components/AppContent'
|
|
export default {
|
|
name: 'App',
|
|
components: {
|
|
Content,
|
|
AppContent,
|
|
},
|
|
}
|
|
</script>
|