服务咨询热线13938255602

新闻动态

联系我们

农资王软件官网,农资王软件,农资王,农资软件,农资进销存管理软件---农资行业管理软件优秀品牌

手 机:13938255602
邮 箱:403860604@qq.com
电 话:010-62669888
地 址:海淀区上地三街东口中黎科技园3#-C401

vue3 配置代码模板

发布时间:2026-04-28 11:39:19人气:
vue3 配置代码模板
 
 
在vscode中  
第一步:Ctrl +shift + P
 
第二步:Preferences:Configure User Snippets
 
 
第三步:选择vue.json
 
第四步:在vue.json中添加如下的配置片段 
{
  "vue 3 Component":{
     "prefix": "vue3",
     "body":[
      "<template>",
      "</template>",
      ...,
      "<script lang="ts" setup>",
      "</script>",
     ...,
       "<style scoped>",
       "</style>"
        ],
        "description": "Generate a vue 3 single-file component with <script setup>"
 }
}
 
{
  "vue 3 Component":{
     "prefix": "vue3",
     "body":[
      "<template>",


      "</template>",
      ...,
      "<script  setup>",


      "</script>",
     ...,
       "<style scoped>",


       "</style>"
        ],
        "description": "Generate a vue 3 single-file component with <script setup>"
 }
}

13938255602