diff options
Diffstat (limited to 'src/server/web/app/dev/views/app.vue')
| -rw-r--r-- | src/server/web/app/dev/views/app.vue | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/src/server/web/app/dev/views/app.vue b/src/server/web/app/dev/views/app.vue deleted file mode 100644 index a35b032b73..0000000000 --- a/src/server/web/app/dev/views/app.vue +++ /dev/null @@ -1,39 +0,0 @@ -<template> -<mk-ui> - <p v-if="fetching">読み込み中</p> - <b-card v-if="!fetching" :header="app.name"> - <b-form-group label="App Secret"> - <b-input :value="app.secret" readonly/> - </b-form-group> - </b-card> -</mk-ui> -</template> - -<script lang="ts"> -import Vue from 'vue'; -export default Vue.extend({ - data() { - return { - fetching: true, - app: null - }; - }, - watch: { - $route: 'fetch' - }, - mounted() { - this.fetch(); - }, - methods: { - fetch() { - this.fetching = true; - (this as any).api('app/show', { - appId: this.$route.params.id - }).then(app => { - this.app = app; - this.fetching = false; - }); - } - } -}); -</script> |