我想做一个从10到0的简单倒计时
我使用普通的 javascript 在网上找到了解决方案,但假设我想在 Vue 中进行。 jQuery中的解决方案
<template>
{{ countDown }}
</template>
<script>
export default {
computed: {
countDown() {
// How do i do the simple countdown here?
}
}
}
</script>
如何在 Vue.js 中重新创建相同的功能?
谢谢
原文由 sinusGob 发布,翻译遵循 CC BY-SA 4.0 许可协议
请检查这是否适合您。