This article mainly introduces the detailed explanation of configuring mobile screen adaptation based on vue-cli. Now I will share it with you and give you a reference.
I have written an article before about mobile screen adaptation: mobile To solve the problem of terminal screen adaptation, today let’s talk about the problem of mobile terminal screen adaptation based on vue-cli configuration.
The recipe is still the same: lib-flexible rem from Taobao
Configure flexible
Install lib-flexible
Run the following installation in the command line:
npm i lib-flexible --save
Introduce lib-flexible
Introduce lib-flexible in the project entry file main.js
// main.js import 'lib-flexible'
Add meta tag
Add the following meta
<meta name="viewport" content="width=device-width, initial-scale=1.0">
px to rem
# in index.html in the project root directory ##In actual development, the value unit we get through the design draft is px, so we need to convert px into rem and then write it into the style. Convert px to rem We will use the tool px2rem, which has a webpack loader: px2rem-loaderInstall px2rem-loader
In Run the following installation in the command line:npm i px2rem-loade --save-dev
Configure px2rem-loade
In the webpack configuration generated by vue-cli, vue-loader options and other style file loaders In the end, they are all generated by a method in build/utils.js. We only need to add a px2remLoader after cssLoader. The remUnit option of px2rem-loader means 1rem = how many pixels. Combined with the lib-flexible solution, we set the options.remUnit of px2remLoader to the design 1/10 of the draft width. Here we assume that the design draft width is 750px.// utils.js var cssLoader = { loader: 'css-loader', options: { minimize: process.env.NODE_ENV === 'production', sourceMap: options.sourceMap } } var px2remLoader = { loader: 'px2rem-loader', options: { remUnit: 75 } } // ...And put it into the loaders array
// utils.js function generateLoaders(loader, loaderOptions) { var loaders = [cssLoader, px2remLoader] // ...After modifying the configuration, you need to restart. Then we write the unit directly in the component and write px. You can write as much as the design draft is, which is much more comfortable. . The above is what I compiled for everyone. I hope it will be helpful to everyone in the future. Related articles:
How to implement watch to automatically detect data changes in vue
Detailed explanation of how Vue configures the packaging tool
Detailed answer: What impact do changes in vue have on components?
How to implement a lottery system using JavaScript
The above is the detailed content of How to configure mobile adaptation using vue-cli?. For more information, please follow other related articles on the PHP Chinese website!

本篇文章带大家聊聊vue指令中的修饰符,对比一下vue中的指令修饰符和dom事件中的event对象,介绍一下常用的事件修饰符,希望对大家有所帮助!

如何覆盖组件库样式?下面本篇文章给大家介绍一下React和Vue项目中优雅地覆盖组件库样式的方法,希望对大家有所帮助!

react与vue的虚拟dom没有区别;react和vue的虚拟dom都是用js对象来模拟真实DOM,用虚拟DOM的diff来最小化更新真实DOM,可以减小不必要的性能损耗,按颗粒度分为不同的类型比较同层级dom节点,进行增、删、移的操作。

在VSCode中开发Vue/React组件时,怎么实时预览组件?本篇文章就给大家分享一个VSCode 中实时预览Vue/React组件的插件,希望对大家有所帮助!

本篇文章给大家分享一个Vue+Laravel开发教程,介绍一下怎么使用 Vue.js 和 Laravel 共建一个简单的 CRUD 应用,希望对大家有所帮助!


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
