vue中多个元素或组件的过渡21

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>vue中多个元素或组件的过渡</title>
		<script src="vue.js"></script>
		<script src="velocity.js"></script>
		<style type="text/css">
			.v-enter,
			.v-leave-to{
				opacity: 0;
			}
			.v-enter-active,
			.v-leave-active{
				transition: opacity 0.5s;
			}
		</style>
	</head>
	<body>
		<div id="app">
			<!--3:使用动画效果进行两个组件的切换-->
			<transition mode="out-in">
				<!--2:通过type来判断显示哪一个组件-->
				<comment :is="type"></comment>
			</transition>
			<button type="button" @click="handleBtn">出现/隐藏</button>
		</div>
		<script>
			/*1:定义两个组件*/
			Vue.component('child',{
				template:'<div>child</div>'
			})
			Vue.component('child-one',{
				template:'<div>child-one</div>'
			})
			
			var vm=new Vue({
				el:'#app',
				data:{
					type:'child'
				},
				methods:{
					handleBtn:function(){
						this.type=this.type==='child'?'child-one':'child'
					}
				}		
			})
		</script>
	</body>
</html>

 

全部评论

相关推荐

点赞 评论 收藏
分享
26牛牛不会梦到感谢信:羡慕离职了还能吃吗现在就赶回去
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务