mirror of
https://github.com/enso-org/enso.git
synced 2024-11-23 16:18:23 +03:00
23 lines
468 B
Plaintext
23 lines
468 B
Plaintext
|
{
|
||
|
"Vue single-file component": {
|
||
|
"scope": "vue",
|
||
|
"prefix": "vue sfc",
|
||
|
"isFileTemplate": true,
|
||
|
"body": [
|
||
|
"<script setup lang=\"ts\">",
|
||
|
"const props = defineProps<{$0}>()",
|
||
|
"const emit = defineEmits<{}>()",
|
||
|
"</script>",
|
||
|
"",
|
||
|
"<template>",
|
||
|
"<div class=\"${TM_FILENAME_BASE}\"></div>",
|
||
|
"</template>",
|
||
|
"",
|
||
|
"<style scoped>",
|
||
|
".${TM_FILENAME_BASE} {",
|
||
|
"}",
|
||
|
"</style>"
|
||
|
]
|
||
|
}
|
||
|
}
|