fix: messages and notif Friends Accepteded

This commit is contained in:
Surya Paolo
2022-12-17 22:12:18 +01:00
parent 3c2fc4c806
commit 3aaa94c33e
16 changed files with 505 additions and 402 deletions

View File

@@ -40,6 +40,8 @@ export default defineComponent({
const myForm = ref(null)
const typePassword = ref('password')
const iswaitingforRes = ref(false)
const signin = ref(<ISigninOptions>{
username: process.env.TEST_USERNAME || '',
@@ -144,6 +146,11 @@ export default defineComponent({
// console.log(' END submit')
}
function showPassword() {
//
typePassword.value = typePassword.value === 'password' ? 'text' : 'password'
}
created()
return {
@@ -155,6 +162,8 @@ export default defineComponent({
getlinkforgetpwd,
myForm,
site,
showPassword,
typePassword,
}
},
})