我 import 这个 css 在 index.vue
import '../assets/fuck.css'

生成的文件就会在 head 种加入这个文件中的样式。
但是每个页面的 css 都是单独写的比如
index.vue 引用 index.css
index1.vue 引用 index1.css
我想要他能每个页面加载每个页面对应的 css 应该怎么配置
我看到很多人都说用这种方法
<style scoped>
@import '../assets/index1.css'
</style>
但是我试了一下是不行的,不知道是什么问题 http://p1.bpimg.com/4851/c116decb60d60fb4.png