rops定义的是组件被调用的时候传入的参数
watch事件用来监听变量的变化
监听到targetTime发生变化则调用getTime()函数刷新组件
<template>
</template>
<script>
export default {
name: 'min-countdown',
props: {
targetTime:0,
},
data () {
return {
time: '00:00:00'
}
},
watch:{
targetTime(newData,prevData){
console.log(newData)
this.getTime();
}
},
methods: {
getTime () {
}
}
}
</script>
<style scoped>
</style>
0 个评论
要回复文章请先登录或注册