.Vue 文件 ES6 语法 webstorm 中的一个识别Bug

vue

webstorm 2017 版本中即使安装了vue template file 设置了 js 语言为 es6 语法仍旧会出现识别不了划线的情况,苦寻很久,最后解决方式如下

<script type="text-ecmascript-6">

export default{

data(){

return{

msg: ''

}

},

components:{

}

}

</script>

添加  type 类型 指明为: text-ecmascript-6  亲测有效。

以上是 .Vue 文件 ES6 语法 webstorm 中的一个识别Bug 的全部内容, 来源链接: utcz.com/z/377779.html

回到顶部