mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 01:03:03 +08:00
fix(accordion-group): ionChange is now fired properly in vue (#24063)
resolves #23762
This commit is contained in:
@ -137,7 +137,7 @@ export const config: Config = {
|
|||||||
externalEvent: 'ionChange'
|
externalEvent: 'ionChange'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
elements: ['ion-datetime', 'ion-input', 'ion-radio-group', 'ion-radio', 'ion-range', 'ion-searchbar', 'ion-segment', 'ion-segment-button', 'ion-select', 'ion-textarea'],
|
elements: ['ion-datetime', 'ion-input', 'ion-radio-group', 'ion-radio', 'ion-range', 'ion-searchbar', 'ion-segment', 'ion-segment-button', 'ion-select', 'ion-textarea', 'ion-accordion-group'],
|
||||||
targetAttr: 'value',
|
targetAttr: 'value',
|
||||||
event: 'v-ion-change',
|
event: 'v-ion-change',
|
||||||
externalEvent: 'ionChange'
|
externalEvent: 'ionChange'
|
||||||
|
@ -95,7 +95,8 @@ export const IonAccordionGroup = /*@__PURE__*/ defineContainer<JSX.IonAccordionG
|
|||||||
'readonly',
|
'readonly',
|
||||||
'expand',
|
'expand',
|
||||||
'ionChange'
|
'ionChange'
|
||||||
]);
|
],
|
||||||
|
'value', 'v-ion-change', 'ionChange');
|
||||||
|
|
||||||
|
|
||||||
export const IonAvatar = /*@__PURE__*/ defineContainer<JSX.IonAvatar>('ion-avatar', IonAvatarCmp);
|
export const IonAvatar = /*@__PURE__*/ defineContainer<JSX.IonAvatar>('ion-avatar', IonAvatarCmp);
|
||||||
|
Reference in New Issue
Block a user