primevue-mirror/components/lib/tabpanel/TabPanel.vue

13 lines
177 B
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<template>
<slot></slot>
</template>
<script>
2023-05-24 06:24:33 +00:00
import BaseTabPanel from './BaseTabPanel.vue';
2022-09-06 12:03:37 +00:00
export default {
name: 'TabPanel',
extends: BaseTabPanel
2022-09-14 11:26:01 +00:00
};
2022-09-06 12:03:37 +00:00
</script>