claude-web/node_modules/primevue/steppanel/BaseStepPanel.vue

31 lines
637 B
Vue
Raw Permalink Normal View History

2026-02-23 02:23:38 +00:00
<script>
import BaseComponent from '@primevue/core/basecomponent';
import StepPanelStyle from 'primevue/steppanel/style';
export default {
name: 'BaseStepPanel',
extends: BaseComponent,
props: {
value: {
type: [String, Number],
default: undefined
},
asChild: {
type: Boolean,
default: false
},
as: {
type: [String, Object],
default: 'DIV'
}
},
style: StepPanelStyle,
provide() {
return {
$pcStepPanel: this,
$parentInstance: this
};
}
};
</script>