I would like to get the GET param's value and trigger an event. How to trigger an event inside the Created method?
I tried this way, but click method is not found:
created(){
if(this.$route.query.text!=''){
this.textToTranslate = this.$route.query.text;
const elem = this.$refs.languageSelect;
elem.change();
}
},