2021
01-13
01-13
vue 页面跳转的实现方式
一、this.$router.push()1、vue<template><divid='test'><button@click='goTo()'>点击跳转4</button></div></template>2、script//跳转前页面传参数:goTo(item){//storageData中数据用于跳转到下一个页面之后,进行返回时能够返回到跳转之前的页面letstorageData={searchWords:this.keyWord,pageSize:this.paging.pageSize,pageNo:this.paging.currentPage};//data中数据用于将本页面中...
继续阅读 >