vue template 嵌套循环 改造成组件 解决IE 不兼容 template

发布于 2022-09-04 13:06:14 字数 1443 浏览 21 评论 0

<td>
                                        <template v-for="dtoLog in item.dtoLog">
                                            <template v-for="userLog in dtoLog.userLog">
                                                <p v-for="logs in userLog.logs">
                                                    <template>
                                                        <h3 v-if="logs.registrationMethod == 0 && !logs.omitException">简单签到</h3>
                                                        <h3 v-if="logs.registrationMethod == 1">语音签到</h3>
                                                        <h3 v-if="logs.registrationMethod == 2">拍照签到<a href="javascript:;" @click="loadPic(logs.localPic)">查看照片</a></h3>
                                                            <h3 v-if="logs.registrationMethod == 3">考勤打卡</h3>
                                                        <h3>{{logs.note ? '('+logs.note+')' : ''}}</h3>
                                                    </template>
                                                </p>
                                            </template>
                                        </template>
                                    </td>

上面的代码是一个表格中一个,td 的内容,为了兼容IE9下不兼容的问题,需要将他们改造成组件的形式;
各位这种循环嵌套怎么办?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜唯美灬不弃 2022-09-11 13:06:14
computed: {
    logs() {
        let arr = []
        this.item.dtoLog.forEach(t => t.userLog.forEach(t => t.logs.forEach(t => arr.push(t))))
        return arr
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文