First Commit
This commit is contained in:
26
src/App.vue
Normal file
26
src/App.vue
Normal file
@ -0,0 +1,26 @@
|
||||
<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>
|
0
src/App.vueZone.Identifier
Normal file
0
src/App.vueZone.Identifier
Normal file
6
src/main.js
Normal file
6
src/main.js
Normal file
@ -0,0 +1,6 @@
|
||||
import Vue from 'vue'
|
||||
import App from './App.vue'
|
||||
Vue.mixin({ methods: { t, n } })
|
||||
|
||||
const View = Vue.extend(App)
|
||||
new View().$mount('#webserver')
|
4
src/main.jsZone.Identifier
Normal file
4
src/main.jsZone.Identifier
Normal file
@ -0,0 +1,4 @@
|
||||
[ZoneTransfer]
|
||||
ZoneId=3
|
||||
ReferrerUrl=https://apps.nextcloud.com/developer/apps/generate
|
||||
HostUrl=https://apps.nextcloud.com/developer/apps/generate
|
0
src/main.jsZone.IdentifierZone.Identifier
Normal file
0
src/main.jsZone.IdentifierZone.Identifier
Normal file
Reference in New Issue
Block a user