2024-11-06 15:35:54 +01:00

27 lines
385 B
Vue

<template>
<NcAppContent>
<div id="webserver">
<h1>Hello world!</h1>
</div>
</NcAppContent>
</template>
<script>
import NcAppContent from '@nextcloud/vue/dist/Components/NcAppContent.js'
export default {
name: 'App',
components: {
NcAppContent,
},
}
</script>
<style scoped lang="scss">
#webserver {
display: flex;
justify-content: center;
margin: 16px;
}
</style>