Created
October 4, 2019 14:56
-
-
Save nolimits4web/9ce7cb406d09ac3a412274c5a3b6883a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="list"> | |
<ul> | |
<my-list-item id="item-1"></my-list-item> | |
</ul> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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