How to load external CSS in Vue
问题 I have created a Vue project with Typescript having components in class style. I need to include some external CSS file - like from Amazon S3 . The CSS doesn't seems to be loaded. In the network section I can see it. 回答1: you can load external URL <style lang="scss or less"> @import "https://external_url_.css"; @import ".../assest/_.css"; </style> you can load css loaders installed if you more such as sass-loader, css-loader , less-loader npm 回答2: I suggest you to use preprocessor Install