遍歷數(shù)組
只有一個參數(shù)則為數(shù)組元素
<p v-for="content in arr">{{content}}</p>
a
1
b
2
如果有兩個參數(shù)/第一參數(shù)為內(nèi)容/第二參數(shù)為下標
a / 0
1 / 1
b / 2
2 / 3
遍歷對象
只有一個參數(shù)為內(nèi)容
apple
banana
orange
有兩個參數(shù)的情況 / 第一參數(shù)為內(nèi)容 / 第二參數(shù)為鍵值Key
apple / a
banana / b
orange / c
有兩個參數(shù)的情況 / 第一參數(shù)為內(nèi)容 / 第二參數(shù)為鍵值Key / 第三參數(shù)為下標
apple / a / 0
banana / b / 1
orange / c / 2