Relative Content

Tag Archive for vue.jsvuejs3vue-component

how to push value into a ref array

as shown below in the code, in the constructor i create a ref array. i want to push this.#recentlyHoveredGeomProps.value into the reactive array object which is this.#recentlyHoveredGeometriesProps.
but for the code posted below, when the listen() is called, i receive the following results despite i am sure that this.#recentlyHoveredGeomProps.value has values:

two radio buttons, how the selection of one of them deselect the other one

in the code mentioned in vue-component section below, i create a component with two radio buttons.
what i want to achieve is, when the radio button in idRadioBtnShowGeoTIFFOverlayContainer is selected, then the radio button in idRadioBtnHideGeoTIFFOverlayContainer should be deselected.
in other words, if one radio button is selected then the other must be deselected and conversrly.