sublime初始vue的代码片段

sublime初始vue的代码片段

<snippet>  
  <content><![CDATA[ 
<template> 
</template> 

<script> 
export default { 

  name: '${1:component_name}', 


  data () { 
    return { 

    }; 
  }, 

  methods: { 

  } 


}; 
</script> 

<style lang="${2:scss}" scoped> 

</style> 
]]></content>  
  <!-- Optional: Set a tabTrigger to define how to trigger the snippet -->  
  <tabTrigger>vuetemplate</tabTrigger>  
  <!-- Optional: Set a scope to limit where the snippet will trigger -->  
  <!-- <scope>source.python</scope> -->  
</snippet> 

猜你喜欢

转载自blog.csdn.net/antdz/article/details/74783903