Angular material 中的可关闭标签页
Closable tabs in Angular material
我一直在摆弄 Angular-Material,它看起来确实很漂亮。但是,我们遇到的问题之一是无法使用选项卡标签旁边的 'X' 按钮关闭选项卡。这类似于任何浏览器选项卡 UI 必须提供的功能。
在我们当前使用的 UI 框架中(Angular Bootstrap UI),您可以定义选项卡 header 的呈现以添加这样一个按钮。
关于如何使用 Material 的 md-tab 指令实现它的任何想法?
谢谢。
文档位于:https://material.angularjs.org/#/api/material.components.tabs/directive/mdTab
说:
If the label attribute is not specified, then an optional
tag can be used to specify more complex tab header
markup. If neither the label nor the md-tab-label are specified, then
the nested markup of the is used as the tab header markup.
为什么不在标签中定义你的?
我一直在摆弄 Angular-Material,它看起来确实很漂亮。但是,我们遇到的问题之一是无法使用选项卡标签旁边的 'X' 按钮关闭选项卡。这类似于任何浏览器选项卡 UI 必须提供的功能。 在我们当前使用的 UI 框架中(Angular Bootstrap UI),您可以定义选项卡 header 的呈现以添加这样一个按钮。 关于如何使用 Material 的 md-tab 指令实现它的任何想法?
谢谢。
文档位于:https://material.angularjs.org/#/api/material.components.tabs/directive/mdTab
说:
If the label attribute is not specified, then an optional tag can be used to specify more complex tab header markup. If neither the label nor the md-tab-label are specified, then the nested markup of the is used as the tab header markup.
为什么不在标签中定义你的?