You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
2.3 KiB
57 lines
2.3 KiB
{
|
|
// Place your shop-admin 工作区 snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and
|
|
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope
|
|
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is
|
|
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
|
|
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
|
|
// Placeholders with the same ids are connected.
|
|
// Example:
|
|
// "Print to console": {
|
|
// "scope": "javascript,typescript",
|
|
// "prefix": "log",
|
|
// "body": [
|
|
// "console.log('$1');",
|
|
// "$2"
|
|
// ],
|
|
// "description": "Log output to console"
|
|
// }
|
|
"import element plus component": {
|
|
"scope": "javascript,typescript",
|
|
"prefix": "import ele",
|
|
"body": [
|
|
"import { ${1:El} } from 'element-plus/es/components/$2/index';",
|
|
"import 'element-plus/es/components/$2/style/css';"
|
|
],
|
|
"description": "按需引用ElementPlus组件及其样式"
|
|
},
|
|
"vbase extra component": {
|
|
"scope": "vue",
|
|
"prefix": "vbase extra",
|
|
"body": [
|
|
"<template>\n<component :is=\"render\" />\n</template>",
|
|
"<script setup lang=\"jsx\">",
|
|
"import { ${1:El} } from 'element-plus/es/components/$2/index';",
|
|
"import 'element-plus/es/components/$2/style/css';",
|
|
"const props = defineProps({});",
|
|
"const attrs = useAttrs();",
|
|
"const slots = useSlots();",
|
|
"const render = () => <$1 {...props} {...attrs} v-slots={slots} />;",
|
|
"</script>",
|
|
"<style lang=\"less\" scoped></style>"
|
|
],
|
|
"description": "快速二次封装ElementPlus组件"
|
|
},
|
|
"try catch": {
|
|
"scope": "javascript,typescript",
|
|
"prefix": "trycatch",
|
|
"body": ["try {", "\t$0", "} catch (e) {", "\tconsole.info('取消$1', e);", "}"],
|
|
"description": "TryCatch代码块"
|
|
},
|
|
"proxy": {
|
|
"scope": "javascript,typescript",
|
|
"prefix": "proxy",
|
|
"body": ["const { proxy } = getCurrentInstance();"],
|
|
"description": "proxy对象"
|
|
}
|
|
}
|