Expand and collapse with angular js

前端 未结 6 1654
一整个雨季
一整个雨季 2021-01-31 18:53

I am trying to figure out a way to do an expand and collapse using angular js. I haven\'t been able to find an elegant way to do this without manipulating dom objects in the con

6条回答
  •  鱼传尺愫
    2021-01-31 19:02

    See http://angular-ui.github.io/bootstrap/#/collapse

    function CollapseDemoCtrl($scope) {
      $scope.isCollapsed = false;
    }
    
    
    
    

    Some content

提交回复
热议问题