vscode建立vue頁面模板,並自動複製name為檔名
阿新 • • 發佈:2021-06-24
點選右下角齒輪設定
搜尋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" // } "Print to console": { "prefix": "vue", "body": [ "<!--", " 作者:hom", " 時間:$CURRENT_YEAR年$CURRENT_MONTH月$CURRENT_DATE日 $CURRENT_HOUR:$CURRENT_MINUTE:$CURRENT_SECOND", "-->", "<template>", " <div></div>", "</template>", "", "<script>", "export default {", " name: '$TM_FILENAME_BASE',", " data () {", " return {}", " },", " computed: {},", " watch: {},", " created () {},", " mounted () {},", " methods: {}", "}", "</script>", "", "<style scoped>", "", "</style>", "$2" ], "description": "Log output to console" } }```` 新建一個vue檔案,敲擊vue+Tab,完成