我正试图在我的vue-cli-3项目中包含一个cdn外部css文件,所以我在public/index.html
文件中添加了css文件,如下所示:
<link rel="stylesheet" href="http://mycssfile.css">
但是css不包括在生成的index.html
文件中。这曾经在vuejs2中工作过,我不明白为什么它不能在vuejs3中工作。知道问题出在哪里吗?感谢
这很简单。在你的main.vue上添加以下
<style>
@import "https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css";
</style>