48 lines
1.3 KiB
Vue
48 lines
1.3 KiB
Vue
<template>
|
|
<div
|
|
:id="id"
|
|
:class="cx('stepper.content', { stepperpanel, index })"
|
|
role="tabpanel"
|
|
:aria-labelledby="ariaLabelledby"
|
|
v-bind="{ ...getStepPT(stepperpanel, 'root', index), ...getStepPT(stepperpanel, 'content', index) }"
|
|
data-pc-name="stepperpanel"
|
|
:data-pc-index="index"
|
|
:data-p-active="active"
|
|
>
|
|
<component
|
|
v-if="template"
|
|
:is="template"
|
|
:index="index"
|
|
:active="active"
|
|
:highlighted="highlighted"
|
|
:clickCallback="(event) => onItemClick(event, index)"
|
|
:prevCallback="(event) => prevCallback(event, index)"
|
|
:nextCallback="(event) => nextCallback(event, index)"
|
|
></component>
|
|
<component v-else :is="stepperpanel"></component>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
|
|
export default {
|
|
name: 'StepperContent',
|
|
hostName: 'Stepper',
|
|
extends: BaseComponent,
|
|
props: {
|
|
id: null,
|
|
template: null,
|
|
ariaLabelledby: null,
|
|
stepperpanel: null,
|
|
index: null,
|
|
active: null,
|
|
highlighted: null,
|
|
clickCallback: null,
|
|
prevCallback: null,
|
|
nextCallback: null,
|
|
getStepPT: null
|
|
}
|
|
};
|
|
</script>
|