gpt4 book ai didi

javascript - Uncaught ReferenceError : moment is not defined while using moment in laravel with vue js

转载 作者:搜寻专家 更新时间:2023-10-30 22:30:22 27 4
gpt4 key购买 nike

我使用的是 laravel 5,我通过 npm install 命令安装了 moment js。我试图在我的一个 View 中使用它和 vue js。但无论我做什么,我都会收到错误“时刻未定义”,如果我使用 require,我会收到“require is not defined”,下面是我 View 的脚本部分。`

<script>
var order = new Vue({
el: '#create_order',

data: {
moment: moment,
event_id: '',
event_type: '',
ticket_types: [],
time_slots: [],
current_timeslots: [],
start_date: null,
end_date: null
},

methods: {
moment: function (date) {
return moment(date);
},`

我是这方面的初学者,所以请尽可能多地解释一下,谢谢。

最佳答案

我使用以下方式。在 app.js 中我添加

window.moment = require('moment');
window.moment.locale('ru');

关于javascript - Uncaught ReferenceError : moment is not defined while using moment in laravel with vue js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44941269/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com