primevue-mirror/components/lib/stepperpanel/StepperPanel.vue

13 lines
188 B
Vue

<template>
<slot />
</template>
<script>
import BaseStepperPanel from './BaseStepperPanel.vue';
export default {
name: 'StepperPanel',
extends: BaseStepperPanel
};
</script>