Skip to content

Instantly share code, notes, and snippets.

@themindfuldev
Last active August 29, 2015 14:13
Show Gist options
  • Save themindfuldev/527aa367224119570d0f to your computer and use it in GitHub Desktop.
Save themindfuldev/527aa367224119570d0f to your computer and use it in GitHub Desktop.
marionette-vdom demonstration
var MyItemView = VDOMItemView.extend({
template: _.template('<p><a><b>w<%= content %></b></a></p>'),
modelEvents: {
"change": "render"
}
});
var VDOMItemView = require('marionette-vdom').VDOMItemView;
var VDOMCollectionView = require('marionette-vdom').VDOMCollectionView;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment