概要
v-for指令是一个用于循环的指令,在vue里面十分常用,我们今天就来学习一下这个指令的用法
指令的用用法
作用:列表渲染,遍历容器的元素或者对象的属性
语法:v-for = "(item,index) in items "
- 参数说明:
- items 为遍历的数组
- item 为遍历出来的元素
- index 为索引,从0开始;可以省略 v-for = " item in items"- 使用:
- 使用插值表达式显示内容
注意:遍历数组时,必须在data中定义;要想让哪个标签循环多次,就在哪个标签上使用v-for指令
案例
我给出一段html模板代码,数据已经提供好了,接下来我们要将数据渲染到页面上去
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app">
<table border="1 solid" colspa="0" cellspacing="0">
<tr>
<th>文章标题</th>
<th>分类</th>
<th>发表时间</th>
<th>状态</th>
<th>操作</th>
</tr>
<tr>
<td>标题1</td>
<td>分类1</td>
<td>2000-01-01</td>
<td>已发