wireguard-dashboard-admin/.vscode/vue3.2.code-snippets

18 lines
328 B
Plaintext
Raw Normal View History

2022-01-05 14:17:06 +08:00
{
"Vue3.2+快速生成模板": {
2023-06-05 15:44:49 +08:00
"scope": "vue",
2022-01-05 14:17:06 +08:00
"prefix": "Vue3.2+",
"body": [
"<script setup lang='ts'>",
"</script>\n",
"<template>",
2023-06-05 15:44:49 +08:00
"\t<div>test</div>",
2022-01-05 14:17:06 +08:00
"</template>\n",
2023-06-05 15:44:49 +08:00
"<style lang='scss' scoped>\n",
2022-01-05 14:17:06 +08:00
"</style>",
"$2"
],
"description": "Vue3.2+"
}
}