27 lines
385 B
Vue
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>
|