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