VSCode创建VUE文件,自动添加注释
VSCode:Ctrl Shift P 输入Snippets输入vue,在vue.json文件里写入:{// Place your snippets for vue here. Each snippet is defined under a snippet name and has a prefix, body and// description. The prefix i...
·
VSCode:Ctrl Shift P 输入Snippets
输入vue,在vue.json文件里写入:
{
// Place your snippets for vue here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
"vue": {
"prefix": "vue",
"body": [
"<!--",
"* @description $1",
"* @fileName $TM_FILENAME",
"* @author shaoyanming",
"* @date $CURRENT_YEAR/$CURRENT_MONTH/$CURRENT_DATE $CURRENT_HOUR:$CURRENT_MINUTE:$CURRENT_SECOND",
"!-->",
"<template>",
" <div>$0</div>",
"</template>",
"",
"<script>",
"export default {",
" data () {",
" return {",
" }",
" },",
"",
" components: {},",
"",
" computed: {},",
"",
" //mounted: {},",
"",
" methods: {}",
"}",
"",
"</script>",
"<style lang='less' scoped>",
"</style>"
],
"description": "vue初始化页面"
}
}
保存后,在你创建的vue文件中,输入你设置的prefix,即vue,即出现注释选项,点击便可添加注释:
点击后:
更多推荐
已为社区贡献3条内容
所有评论(0)