vue3.0.code-snippets 427 B

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