the structure of the page is as follows: was it button failure before or did I replace it with span or failure? I tried to use span. Native didn"t work. I really asked for advice, but I was powerless.
< div class= "button" >
<span @click="turn_to("/order","order")"></span>
<span @click="skip_to("/myCode","myCode")"></span>
<span @click="skip_to("/yzPost","yzPost")"></span>
<span @click="skip_to("index","index")"></span>
<span @click="turn_to("/cityPost","cityPost")"></span>
<span @click="skip_to("/my","my")"></span>
< / div >
methods: {
skip_to(path, name) {
this.$router.push({ path: "/proof", query: { type: name } });
}
}