CPage sistemata

This commit is contained in:
Paolo Arena
2021-10-03 15:09:17 +02:00
parent d0bfd3c33f
commit df4b4825e8
7 changed files with 34 additions and 44 deletions

View File

@@ -34,8 +34,8 @@ export default defineComponent({
// console.log('myimgint', this.myimgint)
}
watch(
imgprofile,
watch(() =>
imgprofile,
// @ts-ignore
(value: string, oldValue: string) => {
userStore.my.profile.img = value
@@ -44,8 +44,10 @@ export default defineComponent({
)
watch(
myimgvar, (value: string, oldValue: string) => {
watch(() =>
myimgvar,
// @ts-ignore
(value: string, oldValue: string) => {
myimgint.value = ''
refresh()
},