aboutsummaryrefslogtreecommitdiff
path: root/src/myview.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/myview.js')
-rw-r--r--src/myview.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/myview.js b/src/myview.js
index d5c0484..a7e9c23 100644
--- a/src/myview.js
+++ b/src/myview.js
@@ -4,7 +4,7 @@ import $ from 'jquery';
import Mustache from 'mustache';
import axios from 'axios';
import Http from './http';
-
+import template from './views/template.html';
export default class MyView extends Backbone.View {
@@ -14,6 +14,7 @@ export default class MyView extends Backbone.View {
initialize() {
this.el = '#myarea';
+ console.log(template);
this.$el = $(this.el);
this.template = 'Hello';
Http.service.get('olapa')
@@ -28,7 +29,7 @@ export default class MyView extends Backbone.View {
}
render() {
- this.$el.html(Mustache.render(this.template));
+ this.$el.html(Mustache.render(template,{data:'This is a sample. sdfhd'}));
}