标签: vue.js vuejs2
我想获取GET参数的值并触发一个事件。如何在Created方法内触发事件?
我尝试过这种方法,但是没有找到click方法:
created(){ if(this.$route.query.text!=''){ this.textToTranslate = this.$route.query.text; const elem = this.$refs.languageSelect; elem.change(); } },
答案 0 :(得分:2)
请使用mounted,因为您正在与DOM元素进行交互,因此这些元素在created生命周期挂钩中将不可用。有关更多信息:another question。
mounted
created