在登录页添加一个按钮来新建助记词,免得每次都翻文档找一个Mnemonic,但是还没有成功。

This commit is contained in:
luk.lu
2018-11-16 18:38:27 +08:00
parent 55f3f22313
commit 390d3ed15e
7 changed files with 21 additions and 4 deletions

View File

@@ -26,6 +26,10 @@
item-text="label"
/>
<v-btn :loading="renewing" dark large color="transparent" @click="createSecword">
{{ $t('login.secwordBtn') }}
</v-btn>
<v-btn :loading="signing" dark large color="transparent" @click="login">
{{ $t('login.loginBtn') }}
</v-btn>
@@ -65,6 +69,7 @@ export default {
]),
...mapActions([
'login',
'createSecword',
]),
...mapRootActions([
'updateCurrentLang',