vue3.3.code-snippets 429 B

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