mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 01:42:34 +00:00
Fixed #5175 - InputIcon component added
This commit is contained in:
parent
bd4d56ef4c
commit
f8a3167618
7 changed files with 163 additions and 0 deletions
15
components/lib/inputicon/BaseInputIcon.vue
Normal file
15
components/lib/inputicon/BaseInputIcon.vue
Normal file
|
@ -0,0 +1,15 @@
|
|||
<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>
|
Loading…
Add table
Add a link
Reference in a new issue