Once you have assembled and rendered your View you'll want to inject it into the DOM at some point. FruitMachine has multiple ways of doing this:
.inject(<Element>)
Empties the contents of the given element, then appendsview.el
..appendTo(<Element>)
Appendsview.el
to the given Element..insertBefore(<Element>, <Element>)
Appendsview.el
to the given Element as a previous sibling of the second Element parameter.
var container = document.querySelector('.container');
var apple = new Apple();
apple.render();
apple.inject(container);
var list = document.querySelector('.list');
var apple = new Apple();
apple.render();
apple.appendTo(list);