如何在模板中添加 VS 代码片段
How to add VS Code snippet inside a template
我正在尝试创建离子 Vue 片段。到目前为止,它似乎仅在添加到顶层时才起作用,而在添加到 template
或 div
标签内时不起作用。如何在这些标签中插入片段?
片段
"ionic-vue Item": {
"prefix": "ivitem",
"body": [
"<ion-item>",
"<ion-label>",
"${1:Item}",
"</ion-label>",
"</ion-item>"
],
"description": "Creates ionc-vue item"
},
将 snippet scope 设置为 html,vue-html
:
{
"ionic-vue Item": {
"scope": "html,vue-html",
//...
}
}
我正在尝试创建离子 Vue 片段。到目前为止,它似乎仅在添加到顶层时才起作用,而在添加到 template
或 div
标签内时不起作用。如何在这些标签中插入片段?
片段
"ionic-vue Item": {
"prefix": "ivitem",
"body": [
"<ion-item>",
"<ion-label>",
"${1:Item}",
"</ion-label>",
"</ion-item>"
],
"description": "Creates ionc-vue item"
},
将 snippet scope 设置为 html,vue-html
:
{
"ionic-vue Item": {
"scope": "html,vue-html",
//...
}
}