此方法无论是在纯html中还是html中引入Vue用法均可
在html中引入vue的用法,包括循环时怎么点击每个的数据获取此条数据的相关内容
<div v-for='(item,index) in listFirst @click="first(item)"></div>
跳转页面:
first(val) {
let url = "list-show.html?id=" + val.id + "&tabLabel=" + val.CodeName; //此处拼接内容
window.location.href = url;
},
接收页面:
created() {
let value = this.GetQueryString("id")
}
GetQueryString(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
var r = window.location.search.substr(1).match(reg);
if (r != null) return unescape(r[2]);
return null;
},