23 lines
444 B
Vue
23 lines
444 B
Vue
<script>
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
import StepListStyle from 'primevue/steplist/style';
|
|
|
|
export default {
|
|
name: 'BaseStepList',
|
|
extends: BaseComponent,
|
|
props: {
|
|
value: {
|
|
type: String,
|
|
default: undefined
|
|
}
|
|
},
|
|
style: StepListStyle,
|
|
provide() {
|
|
return {
|
|
$pcStepList: this,
|
|
$parentInstance: this
|
|
};
|
|
}
|
|
};
|
|
</script>
|