First Component:
this.$refs.sizeSelector.addEventListener('change', () => {
this.selectedSize = this.$refs.sizeSelector.value
return this.selectedSize
Second Component: (Here i want to use the changed value from the first )
getSelectedSize () {
return this.selectedSize
}
But i get the default value from the js file