search
HomeWeb Front-endJS TutorialHow to configure mobile adaptation using vue-cli?
How to configure mobile adaptation using vue-cli?Jun 12, 2018 am 11:31 AM
clivuevue-cliAdaptive

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-loader

Install 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: &#39;css-loader&#39;,
 options: {
  minimize: process.env.NODE_ENV === &#39;production&#39;,
  sourceMap: options.sourceMap
 }
}
var px2remLoader = {
 loader: &#39;px2rem-loader&#39;,
 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

How to package using Parcel

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!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Vue常见面试题汇总(附答案解析)Vue常见面试题汇总(附答案解析)Apr 08, 2021 pm 07:54 PM

本篇文章给大家分享一些Vue面试题(附答案解析)。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

5 款适合国内使用的 Vue 移动端 UI 组件库5 款适合国内使用的 Vue 移动端 UI 组件库May 05, 2022 pm 09:11 PM

本篇文章给大家分享5 款适合国内使用的 Vue 移动端 UI 组件库,希望对大家有所帮助!

聊聊vue指令中的修饰符,常用事件修饰符总结聊聊vue指令中的修饰符,常用事件修饰符总结May 09, 2022 am 11:07 AM

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

如何覆盖组件库样式?React和Vue项目的解决方法浅析如何覆盖组件库样式?React和Vue项目的解决方法浅析May 16, 2022 am 11:15 AM

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

通过9个Vue3 组件库,看看聊前端的流行趋势!通过9个Vue3 组件库,看看聊前端的流行趋势!May 07, 2022 am 11:31 AM

本篇文章给大家分享9个开源的 Vue3 组件库,通过它们聊聊发现的前端的流行趋势,希望对大家有所帮助!

react与vue的虚拟dom有什么区别react与vue的虚拟dom有什么区别Apr 22, 2022 am 11:11 AM

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

VSCode插件分享:一个实时预览Vue/React组件的插件VSCode插件分享:一个实时预览Vue/React组件的插件Mar 17, 2022 pm 08:07 PM

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

手把手带你使用Vue + Laravel开发一个简单的 CRUD 应用手把手带你使用Vue + Laravel开发一个简单的 CRUD 应用Apr 15, 2022 pm 08:55 PM

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

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.