mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
15 lines
313 B
Vue
15 lines
313 B
Vue
<script>
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
import InputIconStyle from 'primevue/inputicon/style';
|
|
|
|
export default {
|
|
name: 'BaseInputIcon',
|
|
extends: BaseComponent,
|
|
style: InputIconStyle,
|
|
provide() {
|
|
return {
|
|
$parentInstance: this
|
|
};
|
|
}
|
|
};
|
|
</script>
|