Skip to content

Instantly share code, notes, and snippets.

@akmalhazim
Created December 28, 2018 16:49
Show Gist options
  • Save akmalhazim/77d30ce3bef3f2b9f5296bfa026e6863 to your computer and use it in GitHub Desktop.
Save akmalhazim/77d30ce3bef3f2b9f5296bfa026e6863 to your computer and use it in GitHub Desktop.
new Vue({
el: '#app',
data() {
return {
number: 41,
numberInArray: []
}
},
methods: {
addNumberToArray() {
this.numberInArray = [...Array(this.number).keys()]
console.log(this.numberInArray);
}
},
mounted() {
this.addNumberToArray();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment