列表渲染
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- 1. 导入 vue 脚本文件 -->
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
</head>
<body>
<!-- DOM区域 -->
<div id="app">
<ul>
<li v-for="(user,i) in userList">
index: {{i}} name: {{user.name}}
</li>
</ul>
</div>
</body>
<script>
const vm = {
data: function() {
return {
userList: [{
id: 1,
name: 'zs'
}, {
id: 2,
name: 'ls'
}, {
id: 3,
name: 'ww'
}, ]
}
},
}
const app = Vue.createApp(vm)
app.mount('#app')
</script>
</html>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
效果展示
