Skip to content

Instantly share code, notes, and snippets.

@bluejack
Created November 11, 2018 05:02
Show Gist options
  • Save bluejack/1168751d4dd8a31294f3a41c3cc3ab3a to your computer and use it in GitHub Desktop.
Save bluejack/1168751d4dd8a31294f3a41c3cc3ab3a to your computer and use it in GitHub Desktop.
Vue component for items in a list
Vue.component('event-list-item', {
template: "<h4>{{ item.title }}</h4>",
props: {
ikey: {
type: String,
required: true
}
},
data: function() {
return {
item: store.state.items[this.ikey]
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment