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

16 lines
299 B
Vue
Raw Normal View History

2024-02-13 06:22:45 +00:00
<template>
<slot />
</template>
<script>
import BaseStepperPanel from './BaseStepperPanel.vue';
export default {
name: 'StepperPanel',
extends: BaseStepperPanel,
mounted() {
console.warn('Deprecated since v4. Use the new structure of Stepper instead.');
}
2024-02-13 06:22:45 +00:00
};
</script>