angular-ui tabs loading template in tab-content

前端 未结 1 1472
臣服心动
臣服心动 2021-02-14 05:20

I\'m using the tabs in angular-ui using this controller:

$scope.panes = [
    { title:"Home",      content:"home" , active: true},
    { title         


        
1条回答
  •  臣服心动
    2021-02-14 05:55

    Just add the ng-include as a child of the pane

    
        
            

    The reason this works is that the scope variable pane is not yet available when you use the ng-include in the same element as the ng-repeat that creates the pane variable.

    This is because the priority value of the ng-include is 0(the default) while the priority of the ng-repeat is 1000 and so the order of execution is:

    1. ng-include
    2. ng-repeat

    See the directive docs

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