vscode中快速生成vue3+ts+setup模板
{
"Print to console": {
"prefix": "v3", //键入该值,按tab快捷产生
"body": [
"<template>",
" <view>",
"",
" </view>",
"</template>",
"",
"<script setup lang='ts'>",
"",
"</script>",
"",
"<style scoped lang='scss'>",
"",
"</style>",
],
"description": "vue3的ts模板"
}
}