Created
July 14, 2021 17:45
-
-
Save mattmaribojoc/ba4a8793c96a7193cd81644e5f7a14bf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <h2> | |
| <p> Join over </p> | |
| <p> {{ Math.round(output) }}+ </p> | |
| <p>Developers </p> | |
| </h2> | |
| </template> | |
| <script setup> | |
| import { ref } from 'vue' | |
| import { useTransition, TransitionPresets } from '@vueuse/core' | |
| const source = ref(0) | |
| const output = useTransition(source, { | |
| duration: 3000, | |
| transition: TransitionPresets.easeOutExpo, | |
| }) | |
| source.value = 5000 | |
| </script> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment