This commit is contained in:
les
2019-10-23 01:17:22 +02:00
parent 94b8027de4
commit 53eb009612
8 changed files with 13 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
<template lang='pug'>
el-dialog(:visible='show' @close='close'
el-dialog(:visible='show' @close='close' :close-on-click-modal='false'
append-to-body :title="$t('common.login')")
p(v-html="$t('login.description')")

View File

@@ -1,5 +1,5 @@
<template lang='pug'>
el-dialog(:visible='show' @close='close'
el-dialog(:visible='show' @close='close' :close-on-click-modal='false'
append-to-body :title="$t('common.register')")
p(v-html="$t('register.description')")
@@ -18,7 +18,7 @@
el-input.mb-2(v-model='user.description' type="textarea" rows='3' :placeholder="$t('common.description')")
span(slot='footer')
el-button(plain type="success" :disabled='disabled' @click='register') {{$t('common.send')}} <v-icon :name='loading?"circle-notch":"chevron-right"' :spin='loading'/>
el-button(plain type="success" :disabled='disabled' @click='register') {{$t('common.send')}} <v-icon name='chevron-right'/>
</template>
<script>