mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-08-07 05:14:57 -04:00
Generate http endpoints and add empty vue app entry point.
This commit is contained in:
28 files changed
+9145
-70
No files matched your search
@@ -0,0 +1,29 @@
|
||||
<template>
|
||||
<div class="uk-flex uk-flex-column uk-flex-middle uk-margin-xlarge-top">
|
||||
<h1>
|
||||
Settings service...
|
||||
</h1>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { mapActions, mapGetters } from 'vuex';
|
||||
export default {
|
||||
name: 'SettingsApp',
|
||||
computed: {
|
||||
...mapGetters({
|
||||
settingsBundles: 'Settings/settingsBundles'
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
...mapActions('Settings', [
|
||||
'fetchSettingsBundles'
|
||||
])
|
||||
},
|
||||
mounted () {
|
||||
this.fetchSettingsBundles().then(() => {
|
||||
console.log(this.settingsBundles);
|
||||
});
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in new issue
Block a user