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