我一直在寻找一种干净的方式来使用字体图标(在我的情况下为 iconmoon),TabViewItem
但没有找到答案。有谁知道该怎么做?
我正在使用NativeScript-Vue。理想的方法是iconSource
使用字体图标更改 ,但它不起作用。就像是:iconSource="String.fromCharCode(0xea0d)"
我正在使用的代码如下(而不是labels
我frames
在 each中TabViewItem
)。
<TabView :selectedIndex="selectedIndex" iosIconRenderingMode="alwaysOriginal">
<TabViewItem title="Tab 1" iconSource="~/images/icon.png">
<Label text="Content for Tab 1" />
</TabViewItem>
<TabViewItem title="Tab 2" iconSource="~/images/icon.png">
<Label text="Content for Tab 2" />
</TabViewItem>
</TabView>