.Vue 文件 ES6 語法 webstorm 中的一個識別Bug

webstorm 2017 版本中即便安裝了vue template file 設置了 js 語言爲 es6 語法仍舊會出現識別不了劃線的狀況,苦尋好久,最後解決方式以下javascript

 

<script type="text-ecmascript-6">
    export default{
        data(){
            return{
                msg: ''
            }
        },
        components:{
        }
    }
</script>

  

添加  type 類型 指明爲: text-ecmascript-6  親測有效。vue

相關文章
相關標籤/搜索