mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
15 lines
293 B
Vue
15 lines
293 B
Vue
<template>
|
|
<div :class="cx('root')" role="presentation" v-bind="ptmi('root')">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import BaseTabPanels from './BaseTabPanels.vue';
|
|
|
|
export default {
|
|
name: 'TabPanels',
|
|
extends: BaseTabPanels,
|
|
inheritAttrs: false
|
|
};
|
|
</script>
|