fix(vue): rename swipeEnable to swipeGesture (#17346)

fixes #16002
This commit is contained in:
tomsk
2019-07-24 23:25:57 +02:00
committed by Brandy Carney
parent 67ffe2f9cc
commit c2348f71a5
2 changed files with 3 additions and 3 deletions

View File

@ -51,8 +51,8 @@ export class MenuController {
* @param [menuId] Optionally get the menu by its id, or side.
* @return Returns the instance of the menu, which is useful for chaining.
*/
swipeEnable(shouldEnable: boolean, menuId?: string): Promise<HTMLIonMenuElement> {
return proxyMethod(CTRL, 'swipeEnable', shouldEnable, menuId);
swipeGesture(shouldEnable: boolean, menuId?: string): Promise<HTMLIonMenuElement> {
return proxyMethod(CTRL, 'swipeGesture', shouldEnable, menuId);
}
/**