Vue JS-Bootstrap Datepicker无法正常工作

时间:2018-10-02 14:13:38

标签: asp.net-mvc datepicker vuejs2

我正在尝试通过动态添加Vue Js中的bootstrap datepicker,但它尚未初始化。

HTML

<div v-for="(aligner,index) in aligners" v-bind:key="aligner">
<input type="hidden" v-bind:name="'AlignerDetails[' + index + '].BatchNo'" v-bind:value="'AlignerDetails_' + (index + 1) + '__BatchNo'" />
<div class='mt-element-ribbon bg-grey-steel'>
    <div class='ribbon ribbon-round ribbon-color-primary uppercase'>Batch #{{index + 1}}</div>
    <div class='pull-right'>
        <a href='javascript:;' v-on:click='remove(index);' class='btn-delete'>
            <i class='fa fa-trash-o font-red'></i>
        </a>
    </div>
    <div class='row ribbon-content'>
        <div class='col-md-12 padding-left-0 padding-right-0' style="margin-bottom:5px;">
            <input type="text" v-bind:name="'AlignerDetails[' + index + '].AlignersSent'" v-on:blur="calculate();" class="form-control alignersSent" placeholder="Aligners Sent" />
        </div>
        <div class='col-md-12 padding-left-0 padding-right-0'>
            <div class="input-group date bs-datetime">
                <input type="date" v-bind:name="'AlignerDetails[' + index + '].AlignersSentDate'" class="form-control form-control-inline alignersSentDate" placeholder="Aligners Sent Date" autocomplete="off" />
                <span class="input-group-addon">
                    <button class="btn btn-default date-set" type="button">
                        <i class="fa fa-calendar"></i>
                    </button>
                </span>
            </div>
        </div>
    </div>
</div>
</div>

JS

var app = new Vue({
el: "#alignerDetails",
data: {
    aligners: []
},
mounted: function () {
    $('.date').datepicker({
        autoclose: true,
        format: 'dd M yyyy'
    });
},
methods: {
    add: function () {
        this.aligners.push({});
    },
    remove: function (index) {
        this.aligners.splice(index, 1);
    }
}
});

我不明白为什么它不起作用。

2 个答案:

答案 0 :(得分:1)

我嵌入需要初始化的Jquery元素时发现的技巧是使用v-if将它们放置在隐藏的元素内。根据Vuejs的文档,v-if在满足v-if条件之前不会渲染该元素。因此,除非您以编程方式将其设置为,否则这些项目将不在DOM中。在这种情况下,您可以通过添加jQuery init语句来完成一个伟大的活动。

将日期选择器放置在基于v-if的div中

<div v-if="show"></div>

内装式我会做类似的事情

async mounted() {
    this.show = true

    $('select', this.$el).selectpicker();
    $('.datepicker', this.$el).datepicker({format: 'mm/dd/yyyy', orientation: 'bottom auto'});

    //this is how you allow datepicker to send its value to v-model on the input field
    $('.datepicker').change(function() {
        $(this)[0].dispatchEvent(new Event('input'));
    });
}

答案 1 :(得分:0)

我尝试了很多方法来使Bootstrap Datepicker与Vue JS一起工作,但是没有任何效果。 最后,我使用了vuejs-datepicker,真是太棒了。