在我的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>
但是没有显示出来:
您导入了BIcon
并进行了注册,但是没有注册所请求的单个图标。