# 需求描述 需要在 vue-cli 项目中引入 `normalize.css` 这样的库。 # 方案调研 ## 调研过程 - Google 关键字: `import css library in vue cli` ## 入选方案 - [How the hell can i include a css file? #604](https://github.com/vuejs-templates/webpack/issues/604):其实很简单。 # 应用过程 实际代码: ```js // src/main.js import normalize from 'normalize.css' new Vue({ normalize }) ``` # 要点总结 无