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

13 lines
177 B
Vue
Executable File

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