为什么我点文件夹新没有新建,只有新建文件?就是我也想像老师那样,新建vue文件,直接带有模板的,我这里只有新建文件,还得一字一句手打vue
确定一下:
Webstorm有没有安装vue插件
Webstorm的版本:最新的webstorm已经集成了vue。
或者自己在Editor->File and Code Templates中添加Vue Template->添加如下内容:
<template>
#[[$END$]]#
</template>
<script>
export default {
name: "${COMPONENT_NAME}"
}
</script>
<style scoped>
</style>
如果使用vscode,可以安装对应的vue插件Vetur插件。