<script setup lang="ts">
import { ref } from "vue"
let title = ref("hello world")
let timer: NodeJS.Timer;
function click() {
title.value = "123";
}
function touchstart() {
console.log("touchstart");
timer = setInterval(() => {
longPress();
}, 500);
}
function touchmove() {
clearTimeout(timer);
timer = null;
}
function touchend() {
clearTimeout(timer);
if (timer != null) {
console.log("普通点击");
}
}
function longPress() {
console.log("长按成功");
}
</script>
<template>
<h1 @touchstart="touchstart" @touchmove="touchmove" @touchend="touchend">{{ title }}</h1>
</template>
<style scoped>
</style>
- 发布:2022-12-13 10:31
- 更新:2022-12-15 21:16
- 阅读:1029
产品分类: HbuilderX
PC开发环境操作系统: Mac
PC开发环境操作系统版本号: 11.6
HBuilderX版本号: 3.6.13
示例代码:
操作步骤:
经常出现但没有专门去复现
经常出现但没有专门去复现
预期结果:
回车可以正常换行
回车可以正常换行
实际结果:
回车不能换行
回车不能换行
bug描述:
下面这段代码放在编译器中有时候就会出现点击回车不能换行的问题
最佳回复