Fixed #5266 - New Stepper component

This commit is contained in:
tugcekucukoglu 2024-02-13 09:22:45 +03:00
parent 3ddf127783
commit 62e6aaeb28
17 changed files with 976 additions and 0 deletions

View file

@ -0,0 +1,12 @@
<template>
<slot />
</template>
<script>
import BaseStepperPanel from './BaseStepperPanel.vue';
export default {
name: 'StepperPanel',
extends: BaseStepperPanel
};
</script>