Skip to content

Instantly share code, notes, and snippets.

@nolimits4web
Created October 4, 2019 14:56
Show Gist options
  • Save nolimits4web/9ce7cb406d09ac3a412274c5a3b6883a to your computer and use it in GitHub Desktop.
Save nolimits4web/9ce7cb406d09ac3a412274c5a3b6883a to your computer and use it in GitHub Desktop.
<div class="list">
<ul>
<my-list-item id="item-1"></my-list-item>
</ul>
</div>
Framework7.registerComponent('my-list-item', {
data() {
return { foo: 'bar' }
},
template: `
<li class="item-content" id="{{$props.id}}">...</li>
`,
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment