2024-01-30 08:02:22 +00:00
|
|
|
<template>
|
2024-02-11 08:10:29 +00:00
|
|
|
<div :class="cx('root')" v-bind="ptmi('root')">
|
2024-01-30 08:02:22 +00:00
|
|
|
<slot />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2024-02-11 08:10:29 +00:00
|
|
|
import BaseIconField from './BaseIconField.vue';
|
2024-01-30 08:02:22 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'IconField',
|
2024-02-11 08:10:29 +00:00
|
|
|
extends: BaseIconField,
|
|
|
|
inheritAttrs: false
|
2024-01-30 08:02:22 +00:00
|
|
|
};
|
|
|
|
</script>
|