我正在尝试围绕tab
angular-ui 引导指令创建一个包装器。
我的自定义指令是;
myMoudule.directive('tabWrapper', function() {
return {
restrict:'AE',
transclude: false,
replace: true,
compile: function compileFn(element, attrs) {
element.replaceWith(
'<tab heading="' + attrs.heading + '"></tab>'
);
}
};
});
用法是:
<tabset>
<tab-wrapper heading="Page 1"></tab-wrapper>
<tab-wrapper heading="Page 2"></tab-wrapper>
</tabset>
我不明白为什么这不起作用。 http://plnkr.co/edit/ALBiIWJbLXK0QzKNu0j6?p=preview