shop-web/.vscode/vue.code-snippets

17 lines
311 B
Plaintext
Raw Normal View History

2025-03-05 09:22:29 +08:00
{
"Vue3 SFC 代码结构一键生成": {
"prefix": "Vue3 SFC",
"body": [
"<script setup lang=\"ts\"></script>\n",
"<template>",
"\t<div>",
"\t\t...",
"\t</div>",
"</template>\n",
"<style scoped></style>",
"$1"
],
"description": "Vue3 SFC"
}
}