为什么组件不起作用?

时间:2016-02-02 08:01:18

标签: ionic2

我正在研究离子2.0和AngularJS 2.0,但是组件" drop-menu"不行。 所有代码均在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() {

  }
}

2 个答案:

答案 0 :(得分:0)

如果您检查代码,您的组件正在运行,名称和&amp;图像在这里。 这只是css和Ionic标签使用的问题。

您想在哪里展示您的组件?在标签行与其他4个?在标题?还有吗?

答案 1 :(得分:0)

缺少指令部分

@Page({
   templateUrl: 'build/pages/tabs/tabs.html',
   directives: [DropmenuComponent],
   providers: [CategoryService]
})