search: function () {
axios({
method: 'post',
url: '/result',
data: {
'pwd': this.pwd,
'text': this.text
}})
.then(resp => {
})
}
对button标签绑定如上方法,axios发送post请求,后端返回html,请问前端该怎么跳转新页面打开此html,实现类似a标签的效果