mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 22:10:15 +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>"
|
|
]
|
|
}
|
|
}
|