weexui使用阿里iconfont--在WxcTabBar中使用

目录

    • 注意事项写在前头
    • 复制ttf文件路径
    • 写入图标对应的unicode

需在weexui安装配置完后

注意事项写在前头

在配置完后请重新运行npm start

复制ttf文件路径

weexui使用阿里iconfont--在WxcTabBar中使用_第1张图片
将上面的路径复制到./config.js中tabIconFontStyles.iconFontUrl
tabIconFontStyles: {
…,
iconFontUrl: ‘//at.alicdn.com/t/font_1290229_nxm187pb5ce.ttf’
}

写入图标对应的unicode

weexui使用阿里iconfont--在WxcTabBar中使用_第2张图片
把对应的’’改写成\ue8ef写入./config.js的tabIconFontTitles中
tabIconFontTitles: [ { title: ‘search’, codePoint: ‘\ue8ef’ },]

你可能感兴趣的:(weex)