Hi. I don't know where's the appropriate place to pose this question. If this isn't the place, let me know :)
My company is working on developing a component library that we can use across our different brands and divisions. Our users are physicians and healthcare providers and primarily use our application in clinics and hospitals. That means that we have a large use case for supporting IE11. I was wondering what tools/frameworks you use to test your components across browsers. Do you perform visual regression testing? Do you test the components manually on different browsers and devices?
Hi guys.
I tried to use VueJS el-radio-button, but my data not updated.
<el-radio-group v-model="formData.sort" size="small">
<el-radio-button :label="$t(translatePath + 'sort1')"></el-radio-button>
<el-radio-button :label="$t(translatePath + 'sort2')"></el-radio-button>
<el-radio-button :label="$t(translatePath + 'sort3')"></el-radio-button>
</el-radio-group>
I checked it with watch property
watch: {
'formData.sort' (val) {
console.log('radio val', val)
}
}
Who can help me?
vue.runtime.esm.js:619 [Vue warn]: <transition-group> children must be keyed: <ElTag>
hey. i got a multi select field which is filterable. based on the filter text, i generate the options (adding more options when filter text matches one of the initial options). now i want to propagate the filter input with some text at some point in time and everything should behave as if the user just entered the text (options list opens, filterMethod
gets called to update options, etc.) but i have some problems.
i want to trigger that when someone clicks on the initial options. i dont want the user to select the initial options but convert the clicked option into a filter string (as if the user typed it on its own). via the @input
event, i check if the last item is one of the initial options and if it is, i remove it from the selection and want to insert its value as the filter string. but here i run into problems. it removed the item from the selection but when i want to set things like query
or previousQuery
or trigger handleQueryChange(filterString)
on the select component, it gets set back to empty string right afterwards.