vue stop for loop
// This will run until 'dictionary' is empty
<div v-for="(word, index) in dictionary">
<p>{{word}}</p>
</div>
// This will break after 20 words displayed (just add .slice)
<div v-for="(word, index) in dictionary.slice(0,20)">
<p>{{word}}</p>
</div>