首頁  >  文章  >  開發工具  >  Sublime新增vue模板

Sublime新增vue模板

藏色散人
藏色散人轉載
2019-09-02 14:28:482674瀏覽

Vue是一套建立使用者介面的漸進式框架,以下由sublime使用教學專欄為大家介紹Sublime 新增vue範本的方法,非常簡單,希望對需要的朋友有幫助!

Sublime新增vue模板

Sublime 新增vue範本

第一步:

在路徑:Sublime Text 3PackagesSublimeTmpltemplates下新建vue .tmpl檔案:

Sublime新增vue模板

<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+e"], "command": "sublime_tmpl",
        "args": {"type": "vue"}, "context": [{"key": "sublime_tmpl.vue"}]
    }

第四步:使用ctrl alt e就可以建立新的vue模板了

Sublime新增vue模板

以上是Sublime新增vue模板的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:segmentfault.com。如有侵權,請聯絡admin@php.cn刪除