v-bind 与v-for的结合

v-bind

动态class的写法 对象的写法
 如何去反
 如何封装对象 

v-bind动态绑定class对象

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style type="text/css">
			.active{
				color: red;
			}
		</style>
	</head>
	<body>
		<div id="app">
		<h2 :class="getactive()">(。・∀・)ノ゙嗨!</h2>
		<button type="button" @click="changeActive()">切换</button>
		</div>
		<script src="../js/vue.js">
			
		</script>
		<script type="text/javascript">
			const app =new Vue({
				el:"#app",
				data(){
					return{
						isactive:true
					}
				},
				methods:{
					getactive(){
						return{
							active:this.isactive
						}
					},
					changeActive(){
						this.isactive=!this.isactive
					}
				},
				computed:{
					
				}
			})
		</script>
	</body>
</html>

v-bind动态绑定class数组

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>

	</head>
	<body>
		<div id="app">
			<h2 class="title" :class="['active','line']">{{message}}</h2>
			<h2 class="title" :class="[active,line]">{{message}}</h2>
			<h2 class="title" :class="getClasses()">{{message}}</h2>
		</div>
		<script src="vue.js"></script>
		<script>
			const app = new Vue({
				el: "#app",
				data(){
					return{
						message:"你好啊",
						active:'aaa',
						line:'bbb'
					}
				},
				methods: {
						getClasses(){
						return [this.active,this.line]
					}
				},
				computed:{
				}
			})
		</script>
	</body>
</html>

v-for与v-bind的结合

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style type="text/css">
			.active {
				color: #FF0000;
			}
		</style>
	</head>
	<body>
		<div id="app">
			<ul>
				<li v-for="(item,index) in movies" :key="index" :class="{active:index==currentIndex}" @click="changeColor(index)">{{index}}--{{item}}</li>
			</ul>
			<ul>
				<li v-for="(item,index) in movies" :key="index" :class="currentIndex==index?'active':''" @click="changeColor(index)">{{index}}--{{item}}</li>
			</ul>
		</div>
		<script src="vue.js"></script>
		<script>
			const app = new Vue({
				el: "#app",
				data() {
					return {
						currentIndex: 0,
						movies: ["死神", "海贼王", "火影忍者", "全职猎人"]
					}
				},
				methods: {
					changeColor(a) {
						console.log(a);
						this.currentIndex = a
					}
				},
				computed: {

				}
			})
		</script>
	</body>
</html>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值