mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 01:12:37 +00:00
Fixed #4742 - New InputGroup Component
This commit is contained in:
parent
bba5d21060
commit
5d8babd349
17 changed files with 348 additions and 0 deletions
15
components/lib/inputgroupaddon/BaseInputGroupAddon.vue
Normal file
15
components/lib/inputgroupaddon/BaseInputGroupAddon.vue
Normal file
|
@ -0,0 +1,15 @@
|
|||
<script>
|
||||
import BaseComponent from 'primevue/basecomponent';
|
||||
import InputGroupAddonStyle from 'primevue/inputgroupaddon/style';
|
||||
|
||||
export default {
|
||||
name: 'BaseInputGroupAddon',
|
||||
extends: BaseComponent,
|
||||
style: InputGroupAddonStyle,
|
||||
provide() {
|
||||
return {
|
||||
$parentInstance: this
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue