iceshrimp-legacy/src/web/app/dev/views/app.vue
2018-03-28 16:39:14 +09:00

40 lines
644 B
Vue

<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>