framework/ember/app/views/application.js

10 lines
187 B
JavaScript
Raw Normal View History

2014-12-20 14:26:46 +08:00
import Ember from 'ember';
export default Ember.View.extend({
title: function() {
return this.get('controller.forumTitle');
}.property('controller.forumTitle')
});