vuejs-challenges icon indicating copy to clipboard operation
vuejs-challenges copied to clipboard

10 - 生命周期钩子

Open yuzmt opened this issue 3 years ago • 0 comments
trafficstars

<script setup lang="ts">
import { onMounted, inject, onUnmounted } from "vue"

const timer = inject("timer")
const count = inject("count")

onMounted(() => {
  timer.value = window.setInterval(() => {
    count.value++
  }, 1000)
})
  
onUnmounted(() => {
  window.clearInterval(timer.value)
})

</script>

<template>
  <div>
    <p>
      Child Component: {{ count }}
    </p>
  </div>
</template>

yuzmt avatar Aug 09 '22 06:08 yuzmt