VUE iview date-picker取时间范围...

Posted love-zf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VUE iview date-picker取时间范围...相关的知识,希望对你有一定的参考价值。

x

html

<script src="//unpkg.com/vue/dist/vue.js"></script>
<script src="//unpkg.com/iview/dist/iview.min.js"></script>
<div id="app">
    <row>
        <i-col span="12">
            <date-picker type="date" v-bind:options="optionsDate"></date-picker>
        </i-col>
    </row>
</div>

JS

    var Main = {
        data () {
            return {
              optionsDate: {
                  disabledDate: function (date) {
                      var disabledDay = date.getFullYear();
             //取1950年至今的时间范围.
return disabledDay <= 1949 || date.valueOf() > Date.now(); }, }, } }, methods: { } } var Component = Vue.extend(Main) new Component().$mount(#app)

 

在jsfiddle中运行即可看到效果...

 

x

 


以上是关于VUE iview date-picker取时间范围...的主要内容,如果未能解决你的问题,请参考以下文章

非template/render模式下使用iview组件时标签需要转化

CSS更改Element的date-picker样式

CSS更改Element的date-picker样式

iview-CRUD模板

vue iview DatePicker

iview 锚点爬坑 && vue 锚点