element日期选择设置默认时间el-date-picker


             




                rangeDate:[],


computed: {
            // 时间组件设置默认时间
            timeDefault () {
                this.queryParams.startDate=formatDates(new Date(),'yyyy-MM-dd')
                this.queryParams.endDate=formatDates(new Date(),'yyyy-MM-dd')
                return [this.queryParams.startDate, this.queryParams.endDate]
            }
        },




 mounted() {
            this.rangeDate = this.timeDefault;
            
        },

你可能感兴趣的:(vue.js)