关于vue3.0中的this.$router.replace({ path: 'https://www.j

这篇文章主要介绍了关于vue3.0中的this.$router.replace({ path: 'https://www.jb51.net/'})刷新无效果问题,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

首先在store中定义所需要的变量可以进行初始化,再定义一个方法,登录成功后A页面,跳转到B页面之前,需要直接调用store中存储数据的方法,全局可以使用

关于vue3.0中的this.$router.replace({ path: 'https://www.j


诸如以上所示,该问题,百度了好久,多亏群里大佬。

vue使用less报错的解决方法 安装less less-loader

cnpm install less less-loader --save-dev

app.vue是所有XXX.vue文件的根文件

所以webapp,的底部通常是在这里配置

h5的新增
<header>标题</header>
<main>主题内容</main>
<footer>固定的底部内容</footer>
所以底部通常不使用footer

元素在最底部水平排列

<div> <div>外卖</div> <div>搜索</div> <div>订单</div> <div>我的</div> </div> .myfooterbox { width: 100%; display: flex; justify-content: space-between; position: fixed; bottom: 0; left: 0; }

ps==>如果元素的宽度是自身的宽度。
justify-content: space-between;可能是是没有效果的。

点击路由跳转

this.$router.push({ path: "/search" });

给当前点击的元素添加背景色 同样是借助三目运算 如果是true 添加某一个类

.on { background: pink; } <div @click="handlersell" :class="{ on: 'https://www.jb51.net/' === $route.path }">外卖</div> <div @click="handlersearch" :class="{ on: '/search' === $route.path }">搜索</div>

路由跳转

<div @click="handlersell" :class="{ on: 'https://www.jb51.net/' === $route.path }">外卖</div> <div @click="handlersearch" :class="{ on: '/search' === $route.path }">搜所 </div> methods: { handlersell() { this.$router.push({ path: "https://www.jb51.net/" }); }, handlersearch() { this.$router.push({ path: "/search" }); }, }

优化后 使用了replace

<div @click="handlergo('https://www.jb51.net/')" :class="{ on: 'https://www.jb51.net/' === $route.path }">外卖</div> <div @click="handlergo('/search')" :class="{ on: '/search' === $route.path }" >搜索</div> handlergo(path) { this.$router.replace(path); }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/beeb4c221311eb6fb24cdc4bce98b94f.html