在首页引入基金组件,代码如下

    1. import FundItem from '@/components/item'

    然后在components对象中给组件声明ID,代码如下

    1. components = {
    2. FundItem
    3. }

    接着在<template>里使用<repeat>循环渲染基金组件,关键代码如下

    1. <view class="fund-list">
    2. <repeat for="{{myFund.funds}}" key="index" index="index" item="item">
    3. <FundItem :listData="item"></FundItem>
    4. </repeat>
    5. </view>

    image.png