50 lines
1.1 KiB
Plaintext
50 lines
1.1 KiB
Plaintext
{
|
|
"script": {
|
|
"prefix": "vue-sfc-ts",
|
|
"body": [
|
|
"<script lang=\"ts\" setup>",
|
|
"",
|
|
"</script>",
|
|
"",
|
|
"<template>",
|
|
" ",
|
|
"</template>",
|
|
"",
|
|
"<style lang=\"scss\">",
|
|
"",
|
|
"</style>",
|
|
""
|
|
],
|
|
"description": "Vue SFC Typescript"
|
|
},
|
|
"template": {
|
|
"scope": "vue",
|
|
"prefix": "template",
|
|
"body": [
|
|
"<template>",
|
|
" $1",
|
|
"</template>"
|
|
],
|
|
"description": "Create <template> block"
|
|
},
|
|
"Script setup + TS": {
|
|
"prefix": "script-setup-ts",
|
|
"body": [
|
|
"<script setup lang=\"ts\">",
|
|
"${1}",
|
|
"</script>"
|
|
],
|
|
"description": "Script setup + TS"
|
|
},
|
|
"style": {
|
|
"scope": "vue",
|
|
"prefix": "style",
|
|
"body": [
|
|
"<style lang=\"scss\">",
|
|
"$1",
|
|
"</style>"
|
|
],
|
|
"description": "Create <style> block"
|
|
},
|
|
}
|