spoonjs
Version:
SpoonJS CLI tool
18 lines (14 loc) • 430 B
JavaScript
define([
'spoon/View',
'{{baseLibrary}}',
'{{templateLibrary}}',
'text!./assets/tmpl/application.html',
'css!./assets/css/application.css'
], function (View, {{baseLibraryVar}}, {{templateLibraryVar}}, tmpl) {
'use strict';
return View.extend({
$name: 'ApplicationView',
_element: 'div#app',
_template: {{templateLibraryVar}}.{{templateLibraryCompileFunc}}(tmpl)
});
});