我尝试过在我的项目中使用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
但原网站上的主题如下: https://bootswatch.com/minty/
答案 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"
]