当前位置: 首页 > 文档资料 > Vue.js 教程 >

1.8.8 v-for on a <template>

优质
小牛编辑
134浏览
2023-12-01

类似于v-if,你也可以利用带有v-for<template>渲染多个元素。比如:

<ul>
  <template v-for="item in items">
    <li>{{ item.msg }}</li>
    <li class="divider"></li>
  </template>
</ul>