vue3.3.code-snippets 444 B

123456789101112131415161718192021
  1. {
  2. "Vue3.3+defineOptions快速生成模板": {
  3. "scope": "vue",
  4. "prefix": "Vue3.3+",
  5. "body": [
  6. "<script setup lang=\"ts\">",
  7. "defineOptions({",
  8. " name: \"\",",
  9. "});",
  10. "</script>",
  11. "",
  12. "<template>",
  13. " <div>${1:test}</div>",
  14. "</template>",
  15. "",
  16. "<style lang=\"scss\" scoped></style>",
  17. ""
  18. ],
  19. "description": "Vue3.3+defineOptions快速生成模板"
  20. }
  21. }