Why aren't my templates rendering

后端 未结 1 627
谎友^
谎友^ 2020-12-21 13:31

I\'ve created some random views with the latest transition stuff from ember and the outlets aren\'t rendering. It\'s saying it\'s transitioning, but nothings showing up in t

相关标签:
1条回答
  • 2020-12-21 14:08

    You're route is extending the Router! It should be,

    App.PageRoute = Em.Route.extend({
        model: function(params, transition){
            return App.Page.find(params.page_id);
        }
    });
    

    Updated fiddle here.

    0 讨论(0)
提交回复
热议问题