`,
methods: {
- selectradio(radiooutput) {
- this.selecteditem = radiooutput; // store the data from the dropdown selection
+ selectradio(radiooutputfacet, radiooutputmfacet) {
+ this.facet = radiooutputfacet; // store the data from the radio selection
+ this.mfacet = radiooutputmfacet;
},
submitSearch() {
this.$refs.primoQueryString.value = `any,contains,${this.$refs.primoQueryTempString.value.replace(
@@ -129,7 +131,8 @@ const onesearchComponent = {
},
data() {
return {
- selecteditem: "", // initialize the data from the dropdown selection
+ facet: "", // initialize the data from the radio selection
+ mfacet: "",
};
},
};