How to implement responsive layout in vue-cli

How to implement responsive layout in vue-cli

When we are doing front-end development, we will inevitably encounter the adaptation of PC and mobile terminals. Faced with such a problem, some companies will prepare two pages, mobile is mobile, PC is PC, and the responsive layout is to display different pages according to the different models of users. Without further ado, just paste the code

First of all, this function is implemented with the help of vuex. If you haven't downloaded it yet, you can download it first.

yarn add vuex

Since it is a responsive layout, we need to prepare two sets of CSS, one is the CSS for the PC side, and the other is the CSS for the mobile side. For the time being, we will call the PC side style computer and the mobile side style mobile.

The first thing we need to do is the current screen width

state: {
  screenWidth: document.documentElement.clientWidth,
  screenHeight: document.documentElement.clientHeight
 }

This is the state of vuex. We will monitor the screen width in real time later, so we also need to provide a method to change screenWidth, so I wrote another mutation

mutations:
  setWidth(state, value) {
   state.screenWidth = value
  },
  setHeight (state, value) {
   state.screenHeight = value
  }
 }

In this way, our vuex file is written, and then it is APP.vue. We need to add a window.onresize event under this file to update the screenWidth value in vuex in real time. Here we use the auxiliary function

import { mapState, mapMutations } from 'vuex'

Add events to the mounted hook function

mounted () {
  window.onresize = () => { 
   this.setWidth(document.documentElement.clientWidth) 
  }
}

For example, for the navigation in our web page, we need it at the bottom on mobile and at the top on PC, so we can use watch or computed to monitor the value of screenWidth in the nav.vue component. Here we use computed

<ul :class="computedPhone">//Provide different class names according to screenWidth<router-link to='/file' tag="li" active-class="active">Movie</router-link>
   <router-link to='/cinma' tag="li" active-class="active">cinema</router-link>
   <router-link to='/center' tag="li" active-class="active">Personal Center</router-link>
</ul>

computed: {
  ...mapState('stylesheet', ['screenWidth']),
  computedPhone() {
   if (this.screenWidth < 1024) {
    return 'mobile'
   } else {
    return 'computer'
   }
  }
 }

In this way, you can achieve responsive layout by writing two sets of css

This is the end of this article about how to implement responsive layout in vue-cli. For more relevant vue-cli responsive layout content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Vue responsively adds and modifies array and object values
  • A brief discussion on the responsiveness principle of Vue
  • Use Vue.set() method to implement responsive modification of array data steps
  • Detailed example of Vue's event-responsive progress bar component
  • How to implement a responsive system in Vue
  • Vue3.0 responsive system source code line by line analysis
  • Detailed explanation of Vue's responsiveness principle
  • Use JS to responsively modify the input value of the Vue implementation page
  • A brief discussion on the principle of Vue data responsiveness

<<:  How to write DROP TABLE in different databases

>>:  Solution to MySql service disappearance for unknown reasons

Recommend

Detailed explanation of MySQL master-slave inconsistency and solutions

1. MySQL master-slave asynchrony 1.1 Network Dela...

Linux file/directory permissions and ownership management

1. Overview of file permissions and ownership 1. ...

A brief description of the relationship between k8s and Docker

Recently, the project uses kubernetes (hereinafte...

Implementing custom scroll bar with native js

This article example shares the specific code of ...

WeChat applet canvas implements signature function

In the WeChat applet project, the development mod...

Implementing timed page refresh or redirect based on meta

Use meta to implement timed refresh or jump of th...

How to build your own Angular component library with DevUI

Table of contents Preface Creating a component li...

Shorten the page rendering time to make the page run faster

How to shorten the page rendering time on the bro...

Specific usage of Vue's new toy VueUse

Table of contents Preface What is VueUse Easy to ...

3 Tips You Must Know When Learning JavaScript

Table of contents 1. The magical extension operat...

Steps to export the fields and related attributes of MySQL tables

Need to export the fields and properties of the t...

5 super useful open source Docker tools highly recommended

Introduction The Docker community has created man...

JavaScript determines whether the browser is IE

As a front-end developer, I can’t avoid IE’s pitf...

Detailed steps to install Anaconda on Linux (Ubuntu 18.04)

Anaconda is the most popular python data science ...

Detailed explanation of Vue configuration request multiple server solutions

1. Solution 1.1 Describing the interface context-...