摘要: Html <i class="icon" @mouseenter="enter(index)" @mouseleave="leave()"></i> JS methods:{ enter(index){ this.seen = true; this.current = index; }, leave 阅读全文
posted @ 2020-12-13 18:53 打工人001 阅读(1376) 评论(0) 推荐(0) 编辑
摘要: 基于使用Vue Router 基础 官网解决方案 解决方法(在js文件中插入下列代码) //对于所有路由导航,简单地让页面滚动到顶部。 scrollBehavior(to, from, savedPosition) { return { x: 0, y: 0 } } 注意: 这个功能只在支持 his 阅读全文
posted @ 2020-12-13 18:48 打工人001 阅读(480) 评论(0) 推荐(0) 编辑
摘要: 1.var that = this;(最简单,最省力) this.getNumLater = function(){ setTimeout(function(){ console.log(that.num); //利用闭包访问that,that是一个指向obj的指针 }, 1000) } 2.bin 阅读全文
posted @ 2020-12-13 18:41 打工人001 阅读(513) 评论(0) 推荐(0) 编辑