mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
chore: refactor vue (#16587)
This commit is contained in:
9
vue/src/controllers/picker-controller.ts
Normal file
9
vue/src/controllers/picker-controller.ts
Normal 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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user