Skip to content

Instantly share code, notes, and snippets.

@ederchrono
Created April 20, 2019 07:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ederchrono/6ff2b419d4907a95b0288ea45dedfe0e to your computer and use it in GitHub Desktop.
Save ederchrono/6ff2b419d4907a95b0288ea45dedfe0e to your computer and use it in GitHub Desktop.
// JS
const itemsList = ['About', 'Works', 'News/Blog', 'Contact us']
new Vue({
el: '#app',
computed: {
menuItems() {
return itemsList.map((item, index) => {
return {
label: item
}
})
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment