fix: acct_mgmt_button
This commit is contained in:
@@ -334,6 +334,10 @@ export default defineComponent({
|
||||
[inputPwd, inputConfirmPwd],
|
||||
([newPwd, newConfirmPwd]) => {
|
||||
isPwdMatched.value = newPwd === newConfirmPwd && newPwd.length;
|
||||
// 只要[確認密碼]或[密碼]有更動,confirm 按鈕就可點選
|
||||
if (newPwd || newConfirmPwd) {
|
||||
// isConfirmDisabled.value = false;
|
||||
}
|
||||
}
|
||||
)
|
||||
});
|
||||
|
||||
@@ -28,10 +28,10 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { defineComponent, ref, computed, onBeforeMount, watch, } from 'vue';
|
||||
import { defineComponent, } from 'vue';
|
||||
import { useModalStore } from '@/stores/modal.js';
|
||||
import { useRouter } from 'vue-router';
|
||||
import useAcctMgmtStore from '@/stores/acctMgmt.js';
|
||||
import useAcctMgmtStore from '@/stores/acctMgmt';
|
||||
import i18next from '@/i18n/i18n.js';
|
||||
import { useToast } from 'vue-toast-notification';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user