Framework 7 v1.5.0 for Meteor using the Material design theme
meteor add loftsteinn:framework7-material
Framework7 gets automatically loaded after which you can use the Framework7
and Dom7
global variables.
if (Meteor.isClient) {
// Initialize app
var myApp = new Framework7();
// If we need to use custom DOM library, let's save it to $$ variable:
var $$ = Dom7;
// ...
}
More information can be found in the Framework7 original documentation.