vue3.2.code-snippets 328 B

123456789101112131415161718
  1. {
  2. "Vue3.2+快速生成模板": {
  3. "prefix": ["<", "Vue3.2+"],
  4. "body": [
  5. "<script setup lang='ts'>",
  6. "$1",
  7. "</script>\n",
  8. "<template>",
  9. "\t<div>",
  10. "\t\t$2",
  11. "\t</div>",
  12. "</template>\n",
  13. "<style scoped>\n",
  14. "</style>",
  15. ],
  16. "description": "Vue3.2+"
  17. }
  18. }