打开Webstorm的Preference
在Editor -> File and Code Templates中点击+
号新建.vue模板,输入模板代码保存即可
之后在工程目录里右键新建文件,即可看到.vue文件
新建.vue文件附我的模板代码:
<template>
</template>
<script>
export default {};
</script>
<style lang="scss" rel="stylesheet/scss" scoped>
</style>
网友评论