diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-02-28 00:30:36 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-02-28 00:30:36 +0900 |
| commit | 41635ca3d34c8538ce78be8cc11f0f592fda1b62 (patch) | |
| tree | 8fec5ff4f69d09082a9f4d242feffbf53b53bdcb /src/web/app/dev | |
| parent | :v: (diff) | |
| download | sharkey-41635ca3d34c8538ce78be8cc11f0f592fda1b62.tar.gz sharkey-41635ca3d34c8538ce78be8cc11f0f592fda1b62.tar.bz2 sharkey-41635ca3d34c8538ce78be8cc11f0f592fda1b62.zip | |
oops
Diffstat (limited to 'src/web/app/dev')
| -rw-r--r-- | src/web/app/dev/views/apps.vue | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/web/app/dev/views/apps.vue b/src/web/app/dev/views/apps.vue index e8adbea2da..42b4abc9b8 100644 --- a/src/web/app/dev/views/apps.vue +++ b/src/web/app/dev/views/apps.vue @@ -20,5 +20,18 @@ <script lang="ts"> import Vue from 'vue'; -export default Vue.extend(); +export default Vue.extend({ + data() { + return { + fetching: true, + apps: [] + }; + }, + mounted() { + (this as any).api('my/apps').then(apps => { + this.apps = apps; + this.fetching = false; + }); + } +}); </script> |