Answers for "ionic ionchange docs"

2

ion input password

<ion-input formControlName="password" type="password"></ion-input>
Posted by: Guest on September-21-2020
0

input output ionic

// In child.ts

import {Output, EventEmitter} from '@angular/core';
export class ChildComponent {
  ...
  @Output() typeChanged = new EventEmitter<string>();
  type = "got";

  emit() {
    this.typeChanged.emit(this.type);
  }
}
// parent.html

<div>
    <component (typeChanged)="onTypeEmitted($event)"></component>
<div>

// In parent.ts

export class ParentComponent {
  ...
  onTypeEmitted(type: string) {
    // do something with 'type'
  }
}
Posted by: Guest on May-20-2020

Browse Popular Code Answers by Language