2017-10-06 61 views

回答

0

jasny-bootstrap不是Angular模塊,它只是javascript庫。如果您使用angular-cli,則可以將此腳本包含在您的.angular-cli.json文件中。這是你如何做到這一點:

"scripts": [ 
    "../node_modules/jquery/dist/jquery.min.js", 
    "../node_modules/bootstrap/dist/js/bootstrap.min.js" 
] 

,並與CSS文件相同的事情:

"styles": [ 
    "../node_modules/bootstrap/dist/js/bootstrap.min.css" 
]