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