<template>
<view>
<view class="">
{{time}}
</view>
</view>
</template>
<script setup>
import {ref} from 'vue';
const time = ref(0)
setInterval(() => {
++time.value
},1000)
</script>
<style></style>
产品分类: uniapp/小程序/微信
PC开发环境操作系统: Mac
PC开发环境操作系统版本号: macos 12.3
HBuilderX类型: 正式
HBuilderX版本号: 3.5.3
第三方开发者工具版本号: 1.03.2206090
基础库版本号: 2.25.3
项目创建方式: HBuilderX
<template>
<view>
<view class="">
{{time}}
</view>
</view>
</template>
<script setup>
import {ref} from 'vue';
const time = ref(0)
setInterval(() => {
++time.value
},1000)
</script>
<style></style>
无
无
无
uniapp vue3 实现一个定时器倒计时,每次视图层更新秒数,会导致页面点击卡顿。没有报错,就是单纯的卡顿。vue2不存在此问题。
1 个回复
6***@qq.com
请问你怎么解决的呀