airyland / vux

Mobile UI Components based on Vue & WeUI
https://vux.li
MIT License
17.59k stars 3.71k forks source link

tabbar-item中的icon slot 使用font-awesome无法显示 #1313

Closed xsword1111 closed 7 years ago

xsword1111 commented 7 years ago

确认已引入~font-awesome/less/font-awesome.less,并且在同一个组件的其他部分就可以显示正常。

<template>
  <div>
    <tabbar>
      <tabbar-item link="/">
        <i slot="icon"  class="fa fa-camera-retro">这个ICON无法显示</i>
        <span slot="label">Home</span>
      </tabbar-item>
    </tabbar>
    <i class="fa fa-camera-retro">这个ICON能显示</i>
  </div>
</template>
<script>
import { Tabbar, TabbarItem } from 'vux'
export default {
  components: {
    Tabbar,
    TabbarItem
  }
}
</script>
<style lang="less" scoped>
@import '~font-awesome/less/font-awesome.less';
</style>
xsword1111 commented 7 years ago