Angular - UI.Router not loading component

前端 未结 2 1178
滥情空心
滥情空心 2020-12-21 02:02

I am unable to get ui.router to load a component on index.html, through a localhost or otherwise:

index.html

    

        
相关标签:
2条回答
  • 2020-12-21 02:44

    component attribute is available from ui-router@1.0.0(see here and in CHANGELOG.MD - it was added in 1.0.0-aplpha) so it's not available 0.3.1.

    Here is working jsFiddle (with 1.0.3-beta)

    0 讨论(0)
  • 2020-12-21 02:49

    By default the data will be applicable on view with $ctrl controller alias

    template: "<p>{{$ctrl.data}}</p>",
    

    Demo Plunkr

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