这篇文章给大家分享的是有关vue3.0中this.$router.replace({ path: '/'})刷新无效果怎么办的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
首先在store中定义所需要的变量可以进行初始化,再定义一个方法,登录成功后A页面,跳转到B页面之前,需要直接调用store中存储数据的方法,全局可以使用
诸如以上所示,该问题,百度了好久,多亏群里大佬。
vue使用less报错的解决方法 安装less less-loader
cnpm install less less-loader --save-dev
app.vue是所有XXX.vue文件的根文件
所以webapp,的底部通常是在这里配置
h6的新增
<header>标题</header>
<main>主题内容</main>
<footer>固定的底部内容</footer>
所以底部通常不使用footer
元素在最底部水平排列
<div class="myfooterbox"> <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: '/' === $route.path }">外卖</div> <div @click="handlersearch" :class="{ on: '/search' === $route.path }">搜索</div>
路由跳转
<div @click="handlersell" :class="{ on: '/' === $route.path }">外卖</div> <div @click="handlersearch" :class="{ on: '/search' === $route.path }">搜所 </div> methods: { handlersell() { this.$router.push({ path: "/" }); }, handlersearch() { this.$router.push({ path: "/search" }); }, }
优化后 使用了replace
<div @click="handlergo('/')" :class="{ on: '/' === $route.path }">外卖</div> <div @click="handlergo('/search')" :class="{ on: '/search' === $route.path }" >搜索</div> handlergo(path) { this.$router.replace(path); }
感谢各位的阅读!关于“vue3.0中this.$router.replace({ path: '/'})刷新无效果怎么办”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。