即使导入BIcon也不会显示引导图标

问题描述 投票:0回答:1

在我的nuxt.js bootstrap-vue项目中:

我跟随github使用bootstrap图标:the link

我的代码:

      <b-icon variant="success" icon="arrow-up"></b-icon>
      <b-icon variant="success" icon="alert-triangle"></b-icon>

      <b-icon icon="alert-circle-fill" variant="success"></b-icon>

      <h2 class="group_title">Anime Wallpapers</h2>

...

<script>

  import { BIcon, BIconArrowUp } from 'bootstrap-vue'

  export default{
    data(){
      return {
        msg: 'hello vue'
      }
    },
    components: {
      BIcon
    }
  }
</script>

但是没有显示出来:

enter image description here

vue.js icons nuxt.js bootstrap-vue
1个回答
1
投票

您导入了BIcon并进行了注册,但是没有注册所请求的单个图标。

© www.soinside.com 2019 - 2024. All rights reserved.