延长离子按钮

时间:2017-07-08 11:09:35

标签: angular ionic2 ionic3

我想扩展ion-button组件,在我自己的自定义组件上添加一些方法。所以我做了:

import {Component, ElementRef, Renderer} from '@angular/core';
import {Button, Config} from "ionic-angular";

@Component({
  selector: '[search-button]',
  templateUrl: 'search-button.component.html',
})
export class SearchButtonComponent extends Button {
  constructor(ionButton: string, config: Config, elementRef: ElementRef, renderer: Renderer) {
    super(ionButton, config, elementRef, renderer);
  }
}

但是这给了我一个ERROR Error: Uncaught (in promise): Error: No provider for String!错误。

扩展离子成分的好方法是什么?

0 个答案:

没有答案