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

24 lines
338 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 Two");
return this;
}
});
return PageView;
});