2021年5月9日
摘要: 一、A页面可以使用任意方法跳转,在B页面的js部分: 方法一、 created() { this.routerTo(); }, methods:{ routerTo(){ document.body.scrollTop = 0; } } 方法二、 updated() { window.scroll( 阅读全文
posted @ 2021-05-09 11:01 菜菜小江升级打怪之路 阅读(319) 评论(0) 推荐(0)
  2021年4月27日
摘要: //处于A页面: <router-link to="/B">AAA</router-link> //处于B页面: <button @click="goBack()">Go A Page</button> //JS部分: goBack(){ this.$router.go(-1); }, 阅读全文
posted @ 2021-04-27 18:35 菜菜小江升级打怪之路 阅读(236) 评论(0) 推荐(0)
摘要: <div class="test-data">我是文本我是文本我是文本</div> .test-data{ width:60px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } *注意:设置宽度。 一、效果图展示: 阅读全文
posted @ 2021-04-27 11:31 菜菜小江升级打怪之路 阅读(41) 评论(0) 推荐(0)
  2021年4月19日
摘要: 一、安装element plus:$ yarn add element-plus --dev 二、导入、引用: 根目录下的indes.html文件 main.js文件 package.js 文件 三、首次运行时:$ yarn install 四、启动项目:$ yarn dev 阅读全文
posted @ 2021-04-19 11:30 菜菜小江升级打怪之路 阅读(1748) 评论(0) 推荐(0)
  2021年4月15日
摘要: <template> <div class="sale-share-box"> <span class="sale-share-btn"> <van-popover class="sale-share-btn-pop" style=" width: 104px; height: 82px; back 阅读全文
posted @ 2021-04-15 19:01 菜菜小江升级打怪之路 阅读(6769) 评论(0) 推荐(0)
摘要: <template> <img class="point" /> </template> <style> .point{ cursor: pointer; } </style> 阅读全文
posted @ 2021-04-15 13:58 菜菜小江升级打怪之路 阅读(3001) 评论(1) 推荐(1)
  2021年4月13日
摘要: 一、代码展示 <template> ... <div class="loading-animation-box" > <img class="loading-animation" width="26" height="28" src="../../../static/images/balabla.p 阅读全文
posted @ 2021-04-13 23:13 菜菜小江升级打怪之路 阅读(2204) 评论(0) 推荐(0)