Ionic 5 输入类型编号,带有向上/向下增量箭头
Ionic 5 Input type number with up / down increment arrows
我在项目中使用 Ionic 5。
我需要的一件事是带有向上/向下增量箭头的输入类型编号,如下图所示:
我该怎么做,因为我在他们网站上的 UI 组件上看不到任何示例。
将 ion-input
的 type
属性设置为 "number":
<ion-input type="number" value="5" min="1" max="9"></ion-input>
我在项目中使用 Ionic 5。 我需要的一件事是带有向上/向下增量箭头的输入类型编号,如下图所示:
我该怎么做,因为我在他们网站上的 UI 组件上看不到任何示例。
将 ion-input
的 type
属性设置为 "number":
<ion-input type="number" value="5" min="1" max="9"></ion-input>