VSCode自定义Nuxt3代码片段

219 阅读1分钟
{ 
  "nuxt":{ 
    "prefix":"nuxt", 
    "body":[
        "<template>", 
            " <div class=\"\"></div>", 
        "</template>",
        "",
        "<script setup>", 
        "import {} from 'vue'", 
        "</script>",
        "",
        "<style scoped></style>",
     ], 
    "description":"nuxt3 Components" 
   }
 }