MCUT_Supervisor/bs_demo/advanced/scripts/views/page1.js
2025-03-26 10:38:33 +08:00

27 lines
347 B
JavaScript

/*global define*/
define([
'jquery',
'underscore',
'backbone'
], function ($, _, Backbone) {
'use strict';
var PageView = Backbone.View.extend({
initialize: function(){
this.render();
},
render: function () {
this.$el.html("Page One");
return this;
}
});
return PageView;
});