VsCode里的Vue模板的实现
程序员文章站
2022-07-04 22:06:21
如何自定义自己的开发模板?你需要这几步: 点击vscode左上角的“文件” ; 找到 “首选项” 并点击首选项里的 “用户片段”; 输入 “vue.json” 点击进入该文件 现在你就能编辑自...
如何自定义自己的开发模板?你需要这几步:
- 点击vscode左上角的“文件” ;
- 找到 “首选项” 并点击首选项里的 “用户片段”;
- 输入 “vue.json” 点击进入该文件
- 现在你就能编辑自己的vue页面开发模板了!
下面是我的模板代码
:
{ "print to console": { "prefix": "vue", "body": [ "<!-- $0 -->", "<template>", " <div></div>", "</template>", "", "<script>", "export default {", " data () {", " return {", " }", " },", "", " //方法集合", " methods: {", "", " },", "", " //生命周期 - 创建完成(可以访问当前this实例)", " created(){", "", " },", "", " //生命周期 - 挂载完成(可以访问dom元素)", " mounted(){", "", " },", " //生命周期 - 创建之前", " beforecreate(){", "", " },", " //生命周期 - 挂载之前", " beforemount(){", "", " },", " //生命周期 - 更新之前", " beforeupdate(){", "", " },", " //生命周期 - 更新之后", " updated(){", "", " },", " //生命周期 - 销毁之前", " beforedestroy(){", "", " },", " //生命周期 - 销毁完成", " destroyed(){", "", " },", " //如果页面有keep-alive缓存功能,该函数会触发", " activated(){", "", " }", "}", "", "</script>", "<style lang='scss' scoped>", "</style>" ], "description": "log output to console" } }
效果如下:
到此这篇关于vscode里的vue模板的实现的文章就介绍到这了,更多相关vscode的vue模板内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!