vue组件遍历结果

app.vue

<template>


  <div>
   <componenta v-for="(key,value) in obj"></componenta>
   
  </div>
</template>


<script>
import componenta from './components/a'
export default {
  components :{
    componenta: componenta
  },
data(){
return{
  hello: 'world',
  obj:{
    name:"cwy",
    age:18,


  }
}

}


a.vue

<template>
  <div>
  <p>{{hello}}</p>
  </div>
</template>


<script>
export default {
data(){
return{
  hello: 'hello'
}
}
  
}

结果是:

hello

hello

因为obj有两个属性,因此会遍历两个结果

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值