vue-cli3如何使用postcss-loader配置css使用BEM写法?

发布于 2022-09-12 13:14:47 字数 1044 浏览 25 评论 0

如果使得下面写法生效

bem写法
<template>
    <div class="ga-home__container">
        ...
    </div>
</template>

<style>
@component-namespace ga {
  @b home {
    @e container {
      width: 100%;
      height: 100%;
      color: #a2eeff;
    }
  }
}
</style>

使用postcss-salad配置后,需要可以渲染成功,但会报错:

postcss-custom-properties: variable '--bg-color' is undefined and used without a fallback

然后,再引入插件postcss-importpostcss-cssnext,但还是不行,而且会导致项目运行变得比较卡;


如下遇到的报错问题【与上面没关联】:

Module build failed (from ./node_modules/postcss-loader/dist/cjs.js):
Error: true is not a PostCSS plugin
Module build failed (from ./node_modules/postcss-loader/src/index.js):
TypeError: child.moveAfter is not a function
Module build failed (from ./node_modules/postcss-loader/index.js):
TypeError: Cannot read property 'postcss' of undefined

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冰之心 2022-09-19 13:14:48

目前使用BEM没什么问题,但有些细节上还是无法进行处理,如果解决后期再进行更新;

可以查看文章:《vue-cli3配置postcss-loader使用BEM

文章下方还有没处理有问题,如果有知道怎么解决的,可在下方给出解决方法。[抱拳]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文