```
<div id="app" >
<template v-for="item of arr" :key="index">
<div>{{item}}</div>
</template>
</div>
//js
var app = new Vue({
el: "#app",
data: {
arr: [1,2,3]
}
})
```