Bootstrap主题在Angular cli项目中不起作用

时间:2018-04-16 20:07:14

标签: angular twitter-bootstrap

我尝试过在我的项目中使用bootstrap主题,但它似乎表现不同,我不明白什么是错的。我在index.html中写了这个:

B b;
memcpy(&b, &a[0], sizeof(b));
// use b in non-modifying way
// Compilers usually will not issue a copy here, YMMV

我得到的结果如下: enter image description here

但原网站上的主题如下: https://bootswatch.com/minty/

1 个答案:

答案 0 :(得分:1)

不要在index.html中使用,而是将样式表添加到.angular-cli.json

步骤1:下载bootstrap和主题minty bootstrap

第2步:在样式和脚本下添加角度cli

"styles": [
        "../pathTo/css/bootstrap.min.css",
        "myStyles.css"
 ],
"scripts": [
        "../pathTo/js/bootstrap.min.js"
]