新网创想网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
Vue 组件安装完成后的配置,具体内容如下所示:
十多年的珠海网站建设经验,针对设计、前端、开发、售后、文案、推广等六对一服务,响应快,48小时及时工作处理。全网整合营销推广的优势是能够根据用户设备显示端的尺寸不同,自动调整珠海建站的显示方式,使网站能够适用不同显示终端,在浏览器中调整网站的宽度,无论在任何一种浏览器上浏览网站,都能展现优雅布局与设计,从而大程度地提升浏览体验。成都创新互联公司从事“珠海网站设计”,“珠海网站推广”以来,每个客户项目都认真落实执行。VSCode插件安装完成后,有些插件如果你想要完整的使用其中的功能得在settings.json中就行配置,接下来是我常用的一些配置
{ "workbench.iconTheme": "vscode-icons", "window.zoomLevel": 0, "files.autoSave": "afterDelay", "eslint.runtime": "", "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "eslint.codeAction.disableRuleComment": {}, "eslint.codeAction.showDocumentation": {}, "editor.formatOnSave": true, "vetur.completion.scaffoldSnippetSources": {}, "vetur.format.defaultFormatter.html": "prettier", // 是否允许自定义的snippet片段提示 "editor.snippetSuggestions": "top", "editor.fontSize": 14, "editor.fontWeight": "400", "editor.formatOnType": true, "guides.enabled": false, "editor.tabSize": 2, "git.confirmSync": false, "editor.renderWhitespace": "boundary", "editor.cursorBlinking": "smooth", "editor.minimap.enabled": true, "editor.minimap.renderCharacters": false, "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}", "editor.codeLens": true, // 配置文件关联,以便启用对应的提示 "files.associations": { "*.vue": "vue", "*.wxss": "css", "*.cjson": "jsonc", "*.wxs": "javascript" }, // 配置emmet是否启用tab展开缩写 "emmet.triggerExpansionOnTab": true, // 配置emmet对文件类型的支持 "emmet.syntaxProfiles": { "javascript": "jsx", "vue": "html", "vue-html": "html" }, // 是否开启eslint检测 "eslint.enable": true, // eslint配置文件 "eslint.options": { "extensions": [ ".js", ".vue" ] }, "git.autofetch": true, "workbench.colorTheme": "One Dark Pro", "emmet.includeLanguages": { "wxml": "html" }, "minapp-vscode.disableAutoConfig": true, }