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>

 

全部评论

相关推荐

提醒喝水小助手:简历太乱了,哪有简历能写三页的啊,先把间距缩小一点,然后项目建议分行写,时间题目职责一行,然后每个技术点一行,重点加粗,看起来也比这样直接一段话好看
点赞 评论 收藏
分享
2024-12-29 19:48
河北科技大学 Java
ruler98:你这太敷衍了,感觉和大二水平差不多。技术栈少,项目也没有。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务