当我尝试在 vue 应用程序中使用 css 模块时,什么也没发生,也没有生成任何类

When I try to use css modules in a vue app nothing happens and no class is generated

提问人:Alexandru Oprescu 提问时间:6/22/2023 更新时间:6/22/2023 访问量:24

问:

我在 webpack 中为 css 模块进行了以下设置:

modules: {
        mode: "local",
        auto: true,
        exportGlobals: true,
        localIdentName: "[path][name]__[local]--[hash:base64:5]",
        localIdentContext: path.resolve(__dirname, "src")
      }

问题是,当我尝试在 vue 组件中使用模块时,什么也没发生。如果我设置:class=“$style.red”,则不会出现任何类。我尝试使用 vue 组件和模块.css 文件,但没有任何效果。我错过了什么?

我想要 scss 模块,但现在如果一个简单的 css 模块可以工作,那就太好了。

css vue.js webpack css-modules css-loader

评论


答: 暂无答案