Introduce processor
This commit is contained in:
39
src/server/web/app/dev/views/app.vue
Normal file
39
src/server/web/app/dev/views/app.vue
Normal file
@@ -0,0 +1,39 @@
|
||||
<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', {
|
||||
app_id: this.$route.params.id
|
||||
}).then(app => {
|
||||
this.app = app;
|
||||
this.fetching = false;
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
</script>
|
Reference in New Issue
Block a user