其他分享
首页 > 其他分享> > Uncaught SyntaxError: Invalid shorthand property initializer

Uncaught SyntaxError: Invalid shorthand property initializer

作者:互联网

JavaScript报错Uncaught SyntaxError: Invalid shorthand property initializer

new Vue({
    el:'#app',
    data:{
        musicDate=musicDate,
        currentSrc='./static/大籽 - 白月光与朱砂痣.mp3'
    }
})

在浏览器调试运行时出现错误:Uncaught SyntaxError: Invalid shorthand property initializer。

原因是“=”应该写为“:”这个经常错,还不容易发现,所以记录下来,加强记忆

标签:shorthand,SyntaxError,Invalid,initializer,Uncaught,property
来源: https://www.cnblogs.com/longfei825/p/15801148.html