mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
Fixed #5266 - New Stepper component
This commit is contained in:
parent
3ddf127783
commit
62e6aaeb28
17 changed files with 976 additions and 0 deletions
18
components/lib/stepperpanel/BaseStepperPanel.vue
Normal file
18
components/lib/stepperpanel/BaseStepperPanel.vue
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue