element DatePicker禁用日期

要实现的效果如下: 具体的需求是实际上班日期才可以进行选择, html:
1 2 3 4 5 6 7 8 9 10 11 12 |
<template> <div class="block"> <span class="demonstration">日期禁用</span> <el-date-picker v-model="value2" align="right" type="date" placeholder="选择日期" :picker-options="pickerOptions"> </el-date-picker> </div> </template> |
js: [crayon-647ff249a29b98087…
Vue实例里this的指向问题

vue文档里有一句话: All lifecycle hooks are called with their ‘this’ context pointing to the Vue instance invoking it. 意思是:在Vue所有…
Vue element el-form表单提交 敲击enter键时 url上会自动加上问号?并刷新页面解决办法

1 2 3 4 5 6 7 8 |
<el-form @submit.native.prevent> <el-form-item :inline="true"> <el-input @keyup.enter.native='onSubmit'></el-input> </el-form-item> <el-form-item> <el-button @click="onSubmit></el-button> </el-form-item> </el-form> |
注意: 鼠标事件导致页面刷新问题,在el-form上增加 @submit.native.prevent 可阻止页面刷新 欢迎留言,1小…
Vue项目配置开发环境,生产环境接口地址,打包build目录更改,router路由守卫

1,配置接口地址 修改项目的接口地址,直接更改以下文件(重点关注module.exports): /config/dev.env.js —- 开发环境接口地址 [crayon-647…