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