BA7YA
03/28/2023, 9:30 AMBA7YA
03/28/2023, 11:00 AMtoggleVisibility: function (value) {
if (this.$refs.fieldContainer) {
this.$slots.default.forEach((child) => {
// Base input fields.
if (
child.componentInstance !== undefined &&
child.componentInstance.$refs &&
child.componentInstance.$refs.field
) {
if (child.componentInstance.$refs.field[0]) {
child.componentInstance.$refs.field[0].destroyValue()
}
}
// Special fields such as browsers.
else if (
child.componentInstance !== undefined &&
child.componentInstance.$slots.default
) {
child.componentInstance.$slots.default.forEach((subChild) => {
if (subChild.componentInstance !== undefined) {
if (subChild.componentInstance.$refs.field && subChild.componentInstance.$refs.field[0]) {
subChild.componentInstance.$refs.field[0].destroyValue()
}
}
})
}
})
}ifox
03/28/2023, 11:02 AMBA7YA
03/28/2023, 11:02 AM