當我把那一刻的方法是這樣的:爲什麼時刻js不能在安裝的vue組件中工作?
<template>
...
</template>
<script>
export default{
...
methods:{
...
add(event){
let current = moment()
}
}
}
</script>
,然後調用add方法,它的工作原理沒有錯誤。
但如果我把那一刻的安裝是這樣的:
mounted(){
let currentAt = moment()
}
這是行不通的。它返回以下錯誤:
[Vue warn]: Error in mounted hook: "ReferenceError: moment is not defined"
我該如何解決這個問題?
顯示包含腳本標記的HTML。 – Borjante