Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <template>
  2. <div class="transition">
  3. <button @click="isActive= !isActive">トランジション</button>
  4. <transition>
  5. <div v-if="isActive">こんにちは!</div>
  6. </transition>
  7. </div>
  8. </template>
  9.  
  10. <script>
  11. export default {
  12. data(){
  13. return{
  14. isActive: false
  15. }
  16. }
  17. }
  18. </script>
  19.  
  20. <style scoped>
  21. .v-enter-active{
  22. transition: opacity 1s;
  23. }
  24. .v-leave-active{
  25. transition: opacity 1s;
  26. }
  27. .v-enter{
  28. opacity: 0;
  29. }
  30. .v-leave-to{
  31. opacity: 0;
  32. }
  33. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement