时间:2021-02-26 10:53:48 | 栏目:vue | 点击:次
1、示例代码
(注:写到vue单文件中了)
<template> <div> <button v-on:click="show = !show"> Toggle </button> <transition name="fade"> <p v-if="show">hello</p> </transition> </div> </template> <script> export default { data: function() { return { show: true } } } </script> <style> .fade-enter-active, .fade-leave-active { transition: opacity .5s } .fade-enter, .fade-leave-to { opacity: 0 } </style>
2、说明
(1)需要transition 标签包裹。
(2)6个class状态
(3)效果:
总结