8. vue 常用指令 v-for 循环遍历渲染元素

v-for基本使用

书写基本格式

  • value
  • index
  • hobby是vue对象中data下面的一个数组数据
<li v-for="(value, index) in hobby">爱好{
  {index}}----{
  {value}}li>

<html lang="en">
<head>
  <meta charset="UTF-8">
  

你可能感兴趣的:(Vue,vue)