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