I have solved it with Dov Benjamin's help like that:
And another method, for both V1.x and 2.x of vue.js
Vue 1:
{{ item }}
Vue2:
// Via slice method in computed prop
{{ item }}
computed: {
filteredItems: function () {
return this.items.slice(0, 10)
}
}