Bootstrap Glyphicons not displaying in angular2

前端 未结 11 1755
天涯浪人
天涯浪人 2020-12-24 14:20

I am trying to use bootstrap glyphicons in my angular2 app. I have installed bootstrap using the command npm install bootstrap --save My code snippet is



        
11条回答
  •  再見小時候
    2020-12-24 14:39

    Please run

    npm install glyphicons --save
    

    and than please import glyphicons in your component

     import icons from 'glyphicons';
        var icons = require('glyphicons');
        console.info('This is' + icons.heart+ ' Glyphicons!')
    

    You can check once in your browser console.

提交回复
热议问题