25 lines
451 B
JavaScript
25 lines
451 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
var runtime = require('../../../utils/vue/props/runtime.js');
|
|
|
|
const tabPaneProps = runtime.buildProps({
|
|
label: {
|
|
type: String,
|
|
default: ""
|
|
},
|
|
name: {
|
|
type: [String, Number]
|
|
},
|
|
closable: {
|
|
type: Boolean,
|
|
default: void 0
|
|
},
|
|
disabled: Boolean,
|
|
lazy: Boolean
|
|
});
|
|
|
|
exports.tabPaneProps = tabPaneProps;
|
|
//# sourceMappingURL=tab-pane2.js.map
|