Sharing tips on using vue element and nuxt

Sharing tips on using vue element and nuxt

1. Element time selection submission format conversion

For example

Fri Sep 07 2018 00:00:00 GMT+0800 (China Standard Time)
Converted to 2020-01-11 format

This record adds a sentence value-format="yyyy-MM-dd" to the datepicker

<el-date-picker type="date" v-model="createdate" @change="formatTime" value-format="yyyy-MM-dd" placeholder="Select time"></el-date-picker>

2. The problem of not being able to select the checkbox when dynamically looping

this.menulist[index].sonList.map((item)=>{
  this.$set(item, 'checked', false); ---Use Vue's set attribute to assign a value})

3.el-form dynamic form verification (v-if, v-show cause verification failure bug)

When using v-if or v-show to control the display and hiding of el-form-item, a validation failure bug will occur.

When using v-if:element to bind validation rules to subcomponents with prop attributes in the form, it is completed in the vue declaration cycle mounted. The elements used by v-if to switch will be destroyed, resulting in the form items in v-if not being rendered during the mounted period, so the rules are not

There is binding. At initialization, rules that do not meet the display conditions will not be generated, resulting in the subsequent switching of conditions, and the verification of the displayed input box will not take effect. Use v-show: All rules will be generated at initialization, and rule verification will be performed even if they are hidden.

Solution (1): Use v-if to verify. Configure a different key value after each v-if.

(2) Customized validation rules. If you like to do it yourself, you can customize the validation yourself.

4. How to add Devtools to nuxt

The following must be added to nuxt.config.js:

vue: {
 config: {
  productionTip: false,
  devtools: true
 }
}

The above is the detailed content of sharing the usage tips of vue element and nuxt. For more information about vue element and nuxt, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Some tips for using less in Vue projects
  • 22 Vue optimization tips (project practical)
  • Vue.js performance optimization N tips (worth collecting)
  • Summary of practical skills commonly used in Vue projects
  • Summary of 10 advanced tips for Vue Router
  • 8 tips for Vue that you will learn after reading it
  • Summary of common routines and techniques in Vue development
  • A brief discussion on the use of Vue functional components
  • 6 tips for writing better v-for loops in Vue.js
  • 25 Vue Tips You Must Know

<<:  Native JavaScript to implement random roll call table

>>:  Simple usage example of vue recursive component

Recommend

How to add a certificate to docker

1. Upgrade process: sudo apt-get update Problems ...

Detailed explanation of tcpdump command examples in Linux

Preface To put it simply, tcpdump is a packet ana...

Detailed explanation of JDBC database link and related method encapsulation

Detailed explanation of JDBC database link and re...

Three notification bar scrolling effects implemented with pure CSS

Preface The notification bar component is a relat...

Detailed explanation of mixed inheritance in Vue

Table of contents The effect of mixed inheritance...

Summary of how to use the MySQL authorization command grant

How to use the MySQL authorization command grant:...

Tutorial analysis of quick installation of mysql5.7 based on centos7

one. wget https://dev.mysql.com/get/mysql57-commu...

How to deploy LNMP architecture in docker

Environmental requirements: IP hostname 192.168.1...

WeChat applet custom tabbar component

This article shares the specific code of the WeCh...

Detailed explanation of Docker usage under CentOS8

1. Installation of Docker under CentOS8 curl http...

Detailed explanation of virtual DOM in Vue source code analysis

Why do we need virtual dom? Virtual DOM is design...

Detailed explanation of the use of umask under Linux

I recently started learning Linux. After reading ...

mysql 8.0.16 winx64.zip installation and configuration method graphic tutorial

This article shares the specific code of MySQL 8....

JavaScript to achieve full screen page scrolling effect

After I finished reading JavaScript DOM, I had a ...

CSS Reset style reset implementation example

Introduction: All browsers come with default styl...