yumechi-no-kuni/src/client/app/desktop/views/components/settings.api.vue

39 lines
791 B
Vue
Raw Normal View History

2018-02-12 08:22:43 -06:00
<template>
2018-02-22 06:15:24 -06:00
<div class="root api">
2018-04-07 13:58:11 -05:00
<p>Token: <code>{{ os.i.token }}</code></p>
2018-04-14 11:04:40 -05:00
<p>%i18n:@intro%</p>
<div class="ui info warn"><p>%fa:exclamation-triangle%%i18n:@caution%</p></div>
<p>%i18n:@regeneration-of-token%</p>
<button class="ui" @click="regenerateToken">%i18n:@regenerate-token%</button>
2018-02-12 08:22:43 -06:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
methods: {
regenerateToken() {
2018-02-22 06:15:24 -06:00
(this as any).apis.input({
2018-04-15 17:07:32 -05:00
title: '%i18n:!@enter-password%',
2018-02-22 06:15:24 -06:00
type: 'password'
}).then(password => {
2018-02-17 21:35:18 -06:00
(this as any).api('i/regenerate_token', {
2018-02-12 08:22:43 -06:00
password: password
});
});
}
}
});
</script>
<style lang="stylus" scoped>
2018-02-22 06:15:24 -06:00
.root.api
2018-02-12 08:22:43 -06:00
code
display inline-block
padding 4px 6px
color #555
background #eee
border-radius 2px
</style>