Fixed #5266 - New Stepper component

This commit is contained in:
tugcekucukoglu 2024-02-13 09:22:45 +03:00
parent 3ddf127783
commit 62e6aaeb28
17 changed files with 976 additions and 0 deletions

View file

@ -0,0 +1,18 @@
<script>
import BaseComponent from 'primevue/basecomponent';
import StepperPanelStyle from 'primevue/stepperpanel/style';
export default {
name: 'BaseStepperPanel',
extends: BaseComponent,
props: {
header: null
},
style: StepperPanelStyle,
provide() {
return {
$parentInstance: this
};
}
};
</script>