芊芊一隅

导航

2020年11月25日 #

vue 动态添加页面背景色

摘要: 1.html <div class="brand_zone" :style="{backgroundColor:colorList[type-1]}"></div>2.css .brand_zone{ position: fixed; width: 100%; height: 100%; top:  阅读全文

posted @ 2020-11-25 15:32 芊芊一隅 阅读(2403) 评论(0) 推荐(0) 编辑

vue 打开新页面 页面滚动到顶部

摘要: 在 main.js 中添加 router.afterEach((to, from, next) => { window.scrollTo(0, 0); }); 让详情页滚动到顶部 document.body.scrollTop = 0; document.documentElement.scroll 阅读全文

posted @ 2020-11-25 12:08 芊芊一隅 阅读(323) 评论(0) 推荐(0) 编辑