1. Element time selection submission format conversionFor 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 loopingthis.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.
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 nuxtThe 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:
|
<<: Native JavaScript to implement random roll call table
>>: Simple usage example of vue recursive component
1. Upgrade process: sudo apt-get update Problems ...
Preface To put it simply, tcpdump is a packet ana...
Detailed explanation of JDBC database link and re...
Preface The notification bar component is a relat...
Table of contents The effect of mixed inheritance...
How to use the MySQL authorization command grant:...
one. wget https://dev.mysql.com/get/mysql57-commu...
Environmental requirements: IP hostname 192.168.1...
This article shares the specific code of the WeCh...
1. Installation of Docker under CentOS8 curl http...
Why do we need virtual dom? Virtual DOM is design...
I recently started learning Linux. After reading ...
This article shares the specific code of MySQL 8....
After I finished reading JavaScript DOM, I had a ...
Introduction: All browsers come with default styl...