13 lines
188 B
Vue
13 lines
188 B
Vue
|
<template>
|
||
|
<slot />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import BaseStepperPanel from './BaseStepperPanel.vue';
|
||
|
|
||
|
export default {
|
||
|
name: 'StepperPanel',
|
||
|
extends: BaseStepperPanel
|
||
|
};
|
||
|
</script>
|