随笔分类 - 前端
摘要:配置用户代码片段 搜索vue 配置模板 { "vue3": { "prefix": "vue3", "body": [ "<template>", " <div>", " </div>", "</template>", "", "<script setup lang=\"ts\">", "impor
阅读全文
摘要:基础插件 1.Chinese (Simplified) (简体中文) Language Pack for Visual Studio Code 2.Path Intellisense 3.Prettier - Code formatter 4.Live Server 5.koroFileHeader
阅读全文
摘要:扩展数组方法 Array.prototype.groupBy = function groupBy(key) { const hash = {}, result = []; for (const el of this) { if (hash[el[key]]) { hash[el[key]].pus
阅读全文