I am struggling to get my v-for loop to create a list based on the size of an array. I thought it was straight forward but am having a hard time figuring out where I've gone wrong. I can only seem to get it to produce the first list item. Any ideas? When I inspect in dev tools I see the following: 
.vue:
<template>
<ul>
<li :v-for="item in items">item
</li>
</ul>
</template>
<script>
export default {
data(){
return{
items: [
{name: 'item1'},
{name: 'item2'},
{name: 'item3'},
{name: 'item4'},
]
}
}
}
</script>