四、v-for列表渲染

1,使用的V-for指令

HTML

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <title>vuedemo</title>
  </head>
  <body>
    <div id="app"></div>
  </body>
</html>

新建a.vue VUE

<template>
<div>
{{ hello }}
</div>
</template>
<script>
export default{
	data(){
		return{
			hello:"我是v-for循环的组件"
		}
	}
}
</script>

APP.vue

<template>
  <div>
  <componentA v-for="(value,key) in objList" key='key'></componentA>
  <ul>
    <li v-for="(item , index) in list"  :class="{odd : index%2}">//判断index角标添加class样式
     <span> {{ item.name}}</span>
     <em> {{ item.age}}</em>
     <p>{{index}}</p> //显示角标数
    </li>
    <li v-for="item in list" v-text = "item.name + '-' + item.age">
    </li>
    <li v-for="(value,key) in objList">
      {{value}}--{{key}}
    </li>
    </ul>
  </div>
</template>

<script>
import componentA from './components/a' //引入组件文件

export default{
//循环引入组件
components:{
  componentA:componentA
},//注册组件


data (){
    return{
//循环一个数组
    list:[
    {
      name:"我是数组循环数据",
      age:"我是第一个数据"
    },
    {
      name:"我第二条数据",
      age:"我是第二个数据"
    }
    ],
    props:['logo'],
//循环一个对象
objList:{
  name:'我是对象循环的对象',
  age:'我是循环对象的第二个数据',
  color:'red'
}
    }
  }
}
  
</script>

JS

//引入vue框架
import Vue from 'vue'
import App from './App'

new Vue({
	el:'#app',
	render: function (){
		return h(App)
	}
})


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

前端之家

帮您踩坑,求安慰!多谢支持!

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值