2021年5月20日

uniapp画布基本使用

摘要: <template> <view> <canvas canvas-id="cs" id="cs"></canvas> <view class="baoc" @tap="baocun"> 保存 </view> </view></template> <script> export default { d 阅读全文

posted @ 2021-05-20 17:26 Just丶随心 阅读(1201) 评论(0) 推荐(0) 编辑

vue中$nextTick()的使用

摘要: this.$nextTick()将回调延迟到下次 DOM 更新循环之后执行。在修改数据之后立即使用它,然后等待 DOM 更新。它跟全局方法 Vue.nextTick 一样,不同的是回调的 this 自动绑定到调用它的实例上。 this.$nextTick(function() { //进入页面滚动到 阅读全文

posted @ 2021-05-20 16:14 Just丶随心 阅读(58) 评论(0) 推荐(0) 编辑

$nextTick

摘要: this.$nextTick()将回调延迟到下次 DOM 更新循环之后执行。在修改数据之后立即使用它,然后等待 DOM 更新。它跟全局方法 Vue.nextTick 一样,不同的是回调的 this 自动绑定到调用它的实例上。 this.$nextTick(function() { //进入页面滚动到 阅读全文

posted @ 2021-05-20 16:13 Just丶随心 阅读(49) 评论(0) 推荐(0) 编辑

导航