plan
Install Dependenciesnpm install px2rem-loader -D npm install lib-flexible -S Introducing dependencies import 'lib-flexible' Convert px to rem Add const cssLoader = { loader: 'css-loader', options: sourceMap: options.sourceMap } } // Add code, px to rem configuration (need to add px2remloader to the loaders array) const px2remLoader = { loader: 'px2rem-loader', options: remUnit: 192, //According to the visual draft, rem is one tenth of px, 1920px 192 rem // remPrecision: 8 // How many decimal places are retained in the converted rem} } Put it in the loaders array // generate loader string to be used with extract text plugin function generateLoaders (loader, loaderOptions) { const loaders = options.usePostCSS ? [cssLoader, postcssLoader, px2remLoader] : [cssLoader, px2remLoader] if (loader) { loaders.push({ loader: loader + '-loader', options: Object.assign({}, loaderOptions, { sourceMap: options.sourceMap }) }) } //... } Modify flexible.js Global search for Modify the code to suit the PC side function refreshRem(){ var width = docEl.getBoundingClientRect().width; if (width / dpr > 540) { width = width * dpr; } //Scaling ratio, can be modified according to actual situation var rem = width / 8; docEl.style.fontSize = rem + 'px'; flexible.rem = win.rem = rem; } For styles that you do not want to be converted, you can add Reference blog VUE PC-side adaptation solution flexible + px2remLoader This concludes this article about the sample code for Vue's PC-side resolution adaptation. For more information about Vue's PC-side resolution adaptation, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Summary of some related operations of Linux scheduled tasks
>>: How to convert mysql bin-log log files to sql files
When we install and configure the server LNPM env...
Table of contents 1. Definition and Use 1.1 Defin...
iOS 1. URL scheme This solution is basically for ...
1. Edit the PAM configuration file sudo vim /etc/...
Table of contents 1. After downloading, unzip it ...
Make an animation of the eight planets in the sol...
Table of contents Basic instructions and usage An...
1. Docker mounts the local directory Docker can s...
Preface This article will share some docker-compo...
Table of contents 1. Prototype Relationship 2. Pr...
This article shares the specific code of JavaScri...
Preface: MySQL master-slave architecture should b...
In practice, we often encounter a problem: how to...
Table of contents 1. innodb_buffer_pool_size 2. i...
Table of contents 1. The role of nginx process lo...