Vue 타이머 사용법 상세 설명
기능 소개:
1.초기 값 은 0 이 고[추가]버튼 을 누 르 면 숫자 는+1 입 니 다.연속 클릭【가】,숫자+1 에 영향 을 주지 않 습 니 다
2、【정지】버튼 을 클릭 하여 정지+1
원본 코드:
<!DOCTYPE html>
<html add="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<!-- 1. Vue -->
<script src="./lib/vue-2.4.0.js"></script>
</head>
<body>
<!-- 2. -->
<div id="app">
<input type="button" value=" " @click="add">
<input type="button" value=" " @click="stop">
<h4>{{ count }}</h4>
</div>
<script>
var vm = new Vue({
el: '#app',
data: {
count: 0,
intervalId: null
},
methods: {
add() {
// ,
if (this.intervalId != null) {
return
};
// ,
this.intervalId = setInterval(() => {
this.count += 1
}, 400)
},
//
stop() {
clearInterval(this.intervalId)//
this.intervalId = null;// null
}
}
})
</script>
</body>
</html>
이전 에는 시간 을 재 기 시작 하 는 구성 요 소 를 소장 하고 있 었 습 니 다.이 구성 요 소 는 프로젝트 에 직접 도입 하여 사용 할 수 있 습 니 다.원작 자 에 게 공유 해 주 셔 서 감사합니다.
<template>
<div class="timer">
<div ref="startTimer"></div>
</div>
</template>
<script>
export default {
name: 'Timer',
data () {
return {
timer: "",
content: "",
hour: 0,
minutes: 0,
seconds: 0
}
},
created () {
this.timer = setInterval(this.startTimer, 1000);
},
destroyed () {
clearInterval(this.timer);
},
methods: {
startTimer () {
this.seconds += 1;
if (this.seconds >= 60) {
this.seconds = 0;
this.minute = this.minute + 1;
}
if (this.minute >= 60) {
this.minute = 0;
this.hour = this.hour + 1;
}
this.$refs.startTimer.innerHTML = (this.minutes < 10 ? '0' + this.minutes : this.minutes) + ':' + (this.seconds < 10 ? '0' + this.seconds : this.seconds);
}
}
}
</script>
<style>
</style>
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Fastapi websocket 및 vue 3(Composition API)1부: FastAPI virtualenv 만들기(선택 사항) FastAPI 및 필요한 모든 것을 다음과 같이 설치하십시오. 생성main.py 파일 및 실행 - 브라우저에서 이 링크 열기http://127.0.0.1:...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.