primevue-mirror/components/lib/tabpanel/TabPanel.vue
2023-05-24 09:24:33 +03:00

12 lines
177 B
Vue
Executable file

<template>
<slot></slot>
</template>
<script>
import BaseTabPanel from './BaseTabPanel.vue';
export default {
name: 'TabPanel',
extends: BaseTabPanel
};
</script>