mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-10 00:27:41 +08:00
fix(angular): module exports
This commit is contained in:
@ -62,7 +62,7 @@ string
|
||||
|
||||
#### component
|
||||
|
||||
any
|
||||
|
||||
|
||||
The component to display inside of the tab.
|
||||
|
||||
@ -156,7 +156,7 @@ string
|
||||
|
||||
#### component
|
||||
|
||||
any
|
||||
|
||||
|
||||
The component to display inside of the tab.
|
||||
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
import { Build, Component, Element, Event, EventEmitter, Method, Prop, State, Watch } from '@stencil/core';
|
||||
import { FrameworkDelegate, attachComponent } from '../../utils/framework-delegate';
|
||||
import { ComponentRef } from '../..';
|
||||
|
||||
@Component({
|
||||
tag: 'ion-tab'
|
||||
@ -44,7 +45,7 @@ export class Tab {
|
||||
/**
|
||||
* The component to display inside of the tab.
|
||||
*/
|
||||
@Prop() component: any;
|
||||
@Prop() component: ComponentRef;
|
||||
|
||||
/**
|
||||
* The name of the tab.
|
||||
|
||||
Reference in New Issue
Block a user