chore: refactor vue (#16587)

This commit is contained in:
Mike Hartington
2018-12-04 16:13:55 -05:00
committed by GitHub
parent 9c8c6507fc
commit 87b25960c4
43 changed files with 599 additions and 2165 deletions

View File

@ -0,0 +1,9 @@
import { PickerOptions } from '@ionic/core';
import { OverlayBaseController } from '../util';
export const CTRL = 'ion-picker-controller';
export class PickerController extends OverlayBaseController<PickerOptions, HTMLIonPickerElement> {
constructor() {
super(CTRL);
}
}