Ionic 2.0 と AngularJS 2.0 に取り組んでいますが、コンポーネントの「ドロップ メニュー」が機能しません。すべてのコードはhttps://github.com/aaronchen2k/test/tree/master/appにあります
tabs.html
<drop-menu></drop-menu>
dropmenu.js
import {Component} from 'angular2/core';
@Component({
selector: 'drop-menu',
templateUrl: 'build/components/dropmenu/dropmenu.html'
})
export class DropMenuComponent {
constructor() {
}
}