mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
12 lines
188 B
Vue
12 lines
188 B
Vue
<template>
|
|
<slot />
|
|
</template>
|
|
|
|
<script>
|
|
import BaseStepperPanel from './BaseStepperPanel.vue';
|
|
|
|
export default {
|
|
name: 'StepperPanel',
|
|
extends: BaseStepperPanel
|
|
};
|
|
</script>
|