primevue
Version:
[](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/primevue) [ • 421 B
JavaScript
this.primevue = this.primevue || {};
this.primevue.tabpanel = (function (vue) {
'use strict';
var script = {
name: 'TabPanel',
props: {
header: null,
disabled: Boolean
}
};
function render(_ctx, _cache, $props, $setup, $data, $options) {
return vue.renderSlot(_ctx.$slots, "default")
}
script.render = render;
return script;
}(Vue));