2024-01-30 08:03:01 +00:00
|
|
|
<template>
|
2024-02-14 07:33:56 +00:00
|
|
|
<span :class="containerClass" v-bind="ptmi('root')">
|
|
|
|
<slot />
|
|
|
|
</span>
|
2024-01-30 08:03:01 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import BaseInputIcon from './BaseInputIcon.vue';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'InputIcon',
|
2024-02-14 07:33:56 +00:00
|
|
|
extends: BaseInputIcon,
|
|
|
|
inheritAttrs: false,
|
|
|
|
computed: {
|
|
|
|
containerClass() {
|
|
|
|
return [this.cx('root'), this.class];
|
|
|
|
}
|
|
|
|
}
|
2024-01-30 08:03:01 +00:00
|
|
|
};
|
|
|
|
</script>
|