Vue 타이머 사용법 상세 설명

3316 단어 vue타이머
본 논문 의 사례 는 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>
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기