primevue-mirror/components/lib/buttonset/ButtonSet.vue

16 lines
270 B
Vue

<template>
<span :class="cx('root')" v-bind="ptmi('root')">
<slot />
</span>
</template>
<script>
import BaseButtonSet from './BaseButtonSet.vue';
export default {
name: 'ButtonSet',
extends: BaseButtonSet,
inheritAttrs: false
};
</script>