摘要: mounted: function () { var picker = new Pikaday({ field: this.$refs.input, format: 'YYYY-MM-DD' }) this.$once('hook:beforeDestroy', function () { picker.destroy() })} 阅读全文
posted @ 2018-08-24 15:58 孤魂1715 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 设置input输入框禁用 一、 readonly unselectable='on' 二、 disabled 三、 onfocus="this.blur()" 不要高亮的焦点框 outline:none; 设置input输入框自动获取焦点可以采用autofocus属性。 设置input输入框自动获取 阅读全文
posted @ 2018-08-24 10:30 孤魂1715 阅读(209) 评论(0) 推荐(0) 编辑