Vue波斯日期时间选择器不适用Laravel 5.2

时间:2018-04-26 10:50:23

标签: laravel vue.js datepicker

我正在使用Laravel 5.2中的“VUE PERSIAN DATE TIME PICKER”,但它不起作用。

首先我安装npm然后运行

  

npm install vue-persian-datetime-picker --save

在我的项目目录中。

然后在我的webpack.config.js上添加这些行

module.exports.plugins = [
    //...
    new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/)
    //...
]

最后我在main.js

中添加了这些行
import VuePersianDatetimePicker from 'vue-persian-datetime-picker';
Vue.component('date-picker', VuePersianDatetimePicker);

我完全按照Github上的说法做了一切,然后我在我的标记中写了这段代码

<date-picker v-model="date"></date-picker>

但现在它不起作用,它对我没有任何显示。

0 个答案:

没有答案