【前言】
无论是vue还是react的css模块化解决方案都是依赖loader来实现的 在使用上,vue中用scoped属性实现样式的私有化,利用深度作用选择器/deep来实现样式的去私有化。
例子:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
< div > < div class = "demo" > < div class = "child" ></ div > </ div > </ div > < script > // some code < script /> < style lang = "less" scoped> .demo { height: 100px; padding-top: 20px; background-color: grey; /deep/.child { color: red; } } </ style > |
在react中使用上是这么搞的(基于css-loader):
1
2
3
4
5
6
7
8
9
|
//test.less .demo { height : 100px ; padding-top : 20px ; background-color : grey; :global(.child) { color : red } } |
1
2
3
4
5
6
7
|
import styles from './test.less' // some code <div className={styles.demo}> <div class= "child" ></div> </div> |
不得不说,在使用上还是vue比较方便。
如果硬要在vue中使用css-loader实现css module的这套解决方案呢?这里以vue-clie 3.x为例。
无论在vue的脚手架vue-cli中还是在react的脚手架umi中,,现在都使用了webpack-chain来实现配置webpack.
这里在vue-cli脚手架创建的项目根目录下,新建vue.config.js,并写入如下内容:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
module.exports = { chainWebpack: (config) => { config.devServer .proxy({ '/api' : { target: 'http://localhost:3000' , pathRewrite: { '^/api' : '' , }, }, }) .port(9000); config.module .rule( 'less' ) .oneOf( 'normal-modules' ) .test(/.less$/) .use( 'css-loader' ) .tap(options => { return Object.assign(options, { modules: { localIdentName: '[name]__[local]___[hash:base64:5]' , auto: /\.less$/i, }, }) }); }, }; |
本来其实也不用写这段内容,默认情况,vue-cli的脚手架已经配置了css-loader的模块化,但是需要把less文件命名成xxx.module.less的形式,这和umi那套不同,也不方便,这样配置然后重启,就能像react一样写css了,另外把引入的style存入data中。这里只是说下可以在vue-cli使用css-loader的那套解决方案,但最佳实践还是用vue自带的那套。
完
以上就是如何在vue-cli中使用css-loader实现css module的详细内容,更多关于vue-cli中使用css-loader实现css module的资料请关注服务器之家其它相关文章!
原文链接:https://juejin.cn/post/6914489741979156487