如何将 WebStorm 与 Vue.js 集成

新手上路,请多包涵

WebStorm 本身不支持 Vue.js (至少现在 - 2016 年 4 月)。

我发现很少有关于如何改善 WebStorm 体验的建议。现在我想将它们列在一个地方(我将在下面回答我自己的问题)。

随时改进答案

原文由 Sergei Panfilov 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 890
2 个回答

WebStorm 现在支持 vue.js (从 2017.1 [博客] 开始)

所以不需要额外的步骤


弃用

这是改善 WebStorm(PhpStorm、Idea 等)体验的方法清单:

  1. 使用 Vue.js 插件

更新:两个插件都有自己的问题 atm

您可以通过安装它 Settings(Preferences) => Plugins => Browse repositories =>(搜索)“vue”

选择一个或两个:“Vue.js”或“vue-for-idea”。由你决定。

  1. 将“Javascript 语言版本”设置为 ES6

打开 Settings(Preferences) => Language & Frameworks => JavaScript 。将 Javascript Language Version 设置为 ECMAcript6

https://github.com/postalservice14/vuejs-plugin

  1. 改进 HTML 标签的属性突出显示

Open Settings(Preferences) => Editor => Inspection => HTML => select Unknown HTML tag attributes => click Custom HTML tag attributes 。添加您的属性。

比如我的清单:

v-on,v-on:click,v-on:change,v-on:focus,v-on:blur,v-on:keyup,:click,@click,v-model,v-text,v- bind,:disabled,@submit,v-class,:class,v-if,:value,v-for,scoped,@click.prevent,number,:readonly,@input,@click,v-show,v- else,readonly,v-link,:title,:for,tab-index,:name,:id,:checked,transition,@submit.prevent,autocapitalize,autocorrect,slot,v-html,:style

PS 有关自定义标签的完整列表,请查看下面 @Alex 的 回答

PPS 实际上它应该以更常见的方式工作:

Open Settings(Preferences) => Languages & Frameworks => Javascript => Libraries => click Add (after this you should将路径设置为 vue.js 。您可以使用 npm 或其他方式下载它)

(此答案中的更多信息: https ://stackoverflow.com/a/28903910/930170)

但是我没有成功。

  1. 启用 Node.js 编码帮助:

打开 Settings(Preferences) => Languages & Frameworks => Node.js and NPM

如果“Node.js核心库未启用”,点击按钮 Enabled


弃用(如果您不为 IDE 使用 vue 插件,则可能需要):

  1. 使 *.vue 文件被识别为 html flies

Open Settings(Preferences) => Editor => File Types find HTML in Recognized File Types , then add *.vue 作为一个新的注册模式。

  1. 改进 ES6 高亮

在每个 vue 带有标签的文件中:

     <script type="text/babel">
        // your code here...
    </script>

(这将有助于识别像 setTimeout(() => {console.log(1) }, 100) 这样的结构)

  1. 改进样式突出显示。 (sass, scss, 等等)

在每个 vue 带有标签的文件中:

     <style lang="sass" rel="stylesheet/sass">
        // your style here...
    </style>

对于 scss 它将是 <style lang="scss" type="text/scss">

对于 stylus 请尝试 <style lang="stylus" type="text/stylus">


UPD :以下步骤不太可信,它们 可能 有帮助,也可能没有帮助,其中一些我没有亲自检查,或者我没有发现是否存在任何影响。

  1. 导入 TextMate Bundle 功能

https://www.jetbrains.com/help/phpstorm/2016.1/textmate-bundles.html?origin=old_help

  1. 为 vue 导入 TypeScript 表

打开 Settings(Preferences) => Language & Frameworks => JavaScript => Libraries 点击 Download ,切换到 TypeScript community stubs 。并使用 vue 字下载所有选项卡。

示例: https ://youtu.be/4mKiGkokyx8?t=84(从 1:24 开始)


UPD2: 有关 更多信息,请查看 github 上的问题: https ://github.com/vuejs/vue-syntax-highlight/issues/3


UPD3: 常见问题解答:

  1. 我可以改进 pug ( jade ) 突出显示 吗?

    • 。因为 Webstorm 不支持模板语言注入… 问题 自 2013 年以来一直没有官方消息。

原文由 Sergei Panfilov 发布,翻译遵循 CC BY-SA 3.0 许可协议

我更新了未知 HTML 标签列表,因此您只需将其复制粘贴到 PhpStorm 设置中:

 nobr, noembed, comment, noscript, embed, script, :checked, :class, :click, :disabled, :for, :id, :name, :readonly, :style, :title, :value, @click, @click.prevent, @click.stop, @click.capture, @click.self, @drag, @drag.prevent, @drag.stop, @drag.capture, @drag.self, @dragend, @dragend.prevent, @dragend.stop, @dragend.capture, @dragend.self, @dragenter, @dragenter.prevent, @dragenter.stop, @dragenter.capture, @dragenter.self, @dragleave, @dragleave.prevent, @dragleave.stop, @dragleave.capture, @dragleave.self, @dragover, @dragover.prevent, @dragover.stop, @dragover.capture, @dragover.self, @dragstart, @dragstart.prevent, @dragstart.stop, @dragstart.capture, @dragstart.self, @drop, @drop.prevent, @drop.stop, @drop.capture, @drop.self, @input, @input.prevent, @input.stop, @input.capture, @input.self, @submit, @submit.prevent, @submit.stop, @submit.capture, @submit.self, scoped, slot, tab-index, v-bind, v-class, v-else, v-for, v-html, v-if, v-link, v-model, v-on, v-on:input, v-on:input.prevent, v-on:input.stop, v-on:input.capture, v-on:input.self, v-on:submit, v-on:submit.prevent, v-on:submit.stop, v-on:submit.capture, v-on:submit.self, v-on:blur, v-on:blur.prevent, v-on:blur.stop, v-on:blur.capture, v-on:blur.self, v-on:change, v-on:change.prevent, v-on:change.stop, v-on:change.capture, v-on:change.self, v-on:click, v-on:click.prevent, v-on:click.stop, v-on:click.capture, v-on:click.self, v-on:focus, v-on:focus.prevent, v-on:focus.stop, v-on:focus.capture, v-on:focus.self, v-on:keypress, v-on:keypress.prevent, v-on:keypress.stop, v-on:keypress.capture, v-on:keypress.self, v-on:keyup, v-on:keyup.prevent, v-on:keyup.stop, v-on:keyup.capture, v-on:keyup.self, v-on:keyup.enter, v-on:keyup.enter.prevent, v-on:keyup.enter.stop, v-on:keyup.enter.capture, v-on:keyup.enter.self, v-on:keyup.tab, v-on:keyup.tab.prevent, v-on:keyup.tab.stop, v-on:keyup.tab.capture, v-on:keyup.tab.self, v-on:keyup.delete, v-on:keyup.delete.prevent, v-on:keyup.delete.stop, v-on:keyup.delete.capture, v-on:keyup.delete.self, v-on:keyup.esc, v-on:keyup.esc.prevent, v-on:keyup.esc.stop, v-on:keyup.esc.capture, v-on:keyup.esc.self, v-on:keyup.space, v-on:keyup.space.prevent, v-on:keyup.space.stop, v-on:keyup.space.capture, v-on:keyup.space.self, v-on:keyup.up, v-on:keyup.up.prevent, v-on:keyup.up.stop, v-on:keyup.up.capture, v-on:keyup.up.self, v-on:keyup.down, v-on:keyup.down.prevent, v-on:keyup.down.stop, v-on:keyup.down.capture, v-on:keyup.down.self, v-on:keyup.left, v-on:keyup.left.prevent, v-on:keyup.left.stop, v-on:keyup.left.capture, v-on:keyup.left.self, v-on:keyup.right, v-on:keyup.right.prevent, v-on:keyup.right.stop, v-on:keyup.right.capture, v-on:keyup.right.self, v-show, v-text, v-on:drag, v-on:drag.prevent, v-on:drag.stop, v-on:drag.capture, v-on:drag.self, v-on:dragend, v-on:dragend.prevent, v-on:dragend.stop, v-on:dragend.capture, v-on:dragend.self, v-on:dragenter, v-on:dragenter.prevent, v-on:dragenter.stop, v-on:dragenter.capture, v-on:dragenter.self, v-on:dragleave, v-on:dragleave.prevent, v-on:dragleave.stop, v-on:dragleave.capture, v-on:dragleave.self, v-on:dragover, v-on:dragover.prevent, v-on:dragover.stop, v-on:dragover.capture, v-on:dragover.self, v-on:dragstart, v-on:dragstart.prevent, v-on:dragstart.stop, v-on:dragstart.capture, v-on:dragstart.self, v-on:drop, v-on:drop.prevent, v-on:drop.stop, v-on:drop.capture, v-on:drop.self, @focus, @focus.prevent, @focus.stop, @focus.capture, @focus.self, @change, @change.prevent, @change.stop, @change.capture, @change.self, @blur, @blur.prevent, @blur.stop, @blur.capture, @blur.self, @keypress, @keypress.prevent, @keypress.stop, @keypress.capture, @keypress.self, @keyup, @keyup.prevent, @keyup.stop, @keyup.capture, @keyup.self, v-on:reset, v-on:reset.prevent, v-on:reset.stop, v-on:reset.capture, v-on:reset.self, @reset, @reset.prevent, @reset.stop, @reset.capture, @reset.self, v-on:keydown, v-on:keydown.prevent, v-on:keydown.stop, v-on:keydown.capture, v-on:keydown.self, @keydown, @keydown.prevent, @keydown.stop, @keydown.capture, @keydown.self, v-on:mousenter, v-on:mousenter.prevent, v-on:mousenter.stop, v-on:mousenter.capture, v-on:mousenter.self, v-on:mouseover, v-on:mouseover.prevent, v-on:mouseover.stop, v-on:mouseover.capture, v-on:mouseover.self, v-on:mousemove, v-on:mousemove.prevent, v-on:mousemove.stop, v-on:mousemove.capture, v-on:mousemove.self, v-on:mousedown, v-on:mousedown.prevent, v-on:mousedown.stop, v-on:mousedown.capture, v-on:mousedown.self, v-on:mouseup, v-on:mouseup.prevent, v-on:mouseup.stop, v-on:mouseup.capture, v-on:mouseup.self, @mousenter, @mousenter.prevent, @mousenter.stop, @mousenter.capture, @mousenter.self, @mouseover, @mouseover.prevent, @mouseover.stop, @mouseover.capture, @mouseover.self, @mousemove, @mousemove.prevent, @mousemove.stop, @mousemove.capture, @mousemove.self, @mousedown, @mousedown.prevent, @mousedown.stop, @mousedown.capture, @mousedown.self, @mouseup, @mouseup.prevent, @mouseup.stop, @mouseup.capture, @mouseup.self, v-on:dblclick, v-on:dblclick.prevent, v-on:dblclick.stop, v-on:dblclick.capture, v-on:dblclick.self, v-on:contextmenu, v-on:contextmenu.prevent, v-on:contextmenu.stop, v-on:contextmenu.capture, v-on:contextmenu.self, v-on:wheel, v-on:wheel.prevent, v-on:wheel.stop, v-on:wheel.capture, v-on:wheel.self, v-on:mouseleave, v-on:mouseleave.prevent, v-on:mouseleave.stop, v-on:mouseleave.capture, v-on:mouseleave.self, v-on:mouseout, v-on:mouseout.prevent, v-on:mouseout.stop, v-on:mouseout.capture, v-on:mouseout.self, v-on:select, v-on:select.prevent, v-on:select.stop, v-on:select.capture, v-on:select.self, @dblclick, @dblclick.prevent, @dblclick.stop, @dblclick.capture, @dblclick.self, @contextmenu, @contextmenu.prevent, @contextmenu.stop, @contextmenu.capture, @contextmenu.self, @wheel, @wheel.prevent, @wheel.stop, @wheel.capture, @wheel.self, @mouseleave, @mouseleave.prevent, @mouseleave.stop, @mouseleave.capture, @mouseleave.self, @mouseout, @mouseout.prevent, @mouseout.stop, @mouseout.capture, @mouseout.self, @select, @select.prevent, @select.stop, @select.capture, @select.self, v-bind:key

我会评论你之前的回答,但字符限制阻止我这样做。

注意:还有更多 事件 可用,我只挑选了我个人认为最常见的事件。

原文由 Alex 发布,翻译遵循 CC BY-SA 3.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题