vue3.2.code-snippets 329 B

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