2024-01-30 08:03:01 +00:00
|
|
|
<script>
|
|
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
|
|
import InputIconStyle from 'primevue/inputicon/style';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'BaseInputIcon',
|
|
|
|
extends: BaseComponent,
|
|
|
|
style: InputIconStyle,
|
2024-02-14 07:33:56 +00:00
|
|
|
props: {
|
|
|
|
class: null
|
|
|
|
},
|
2024-01-30 08:03:01 +00:00
|
|
|
provide() {
|
|
|
|
return {
|
|
|
|
$parentInstance: this
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|