第一步:添加模板:
模板写法如下:
<template> </template> <script type="ecmascript-6"> </script> <style rel="stylesheet"> </style>
第二步:打开 Default.sublime-commands,复制粘贴以下配置
,{
"caption": "Tmpl: Create vue", "command": "sublime_tmpl",
"args": {"type": "vue"}
}
第三步:打开Default.sublime-keymap,添加快捷键
添加模板如下:
,{
"keys": ["ctrl+alt+v"], "command": "sublime_tmpl",
"args": {"type": "vue"}, "context": [{"key": "sublime_tmpl.vue"}]
}
好啦,你现在可以用啦~~~