离子水平滚动条

时间:2018-04-22 05:57:54

标签: angular typescript ionic-framework

我参考Ionic - Horizontal scroll tab for Categories的答案。

有人能告诉我应该包含在category.model中的内容吗?

1 个答案:

答案 0 :(得分:0)

category.model是具有CategoryModel界面的文件。

它应该有:

export interface CategoryModel {
  id: number,
  name: string
  // add more things here based on your need
}

在此处详细了解接口:typescript interfaces