摘要:
vue中router以及route的使用 路由基本概念 route,它是一条路由。 { path: '/home', component: Home } 1 2 routes,是一组路由。 const routes = [ { path: '/home', component: Home }, { 阅读全文
摘要:
vue调试工具dev-tools安装 vuevue-devtools是一款基于chrome浏览器的插件,用于vue应用的调试,帮助我们快速的调试开发vue应用。 第一步:我们可以先从github上找到vue-devtools的项目,下载到本地。下载vue-devtools链接。 克隆方法:git c 阅读全文
摘要:
Vue中.prettierrc文件常见配置(易懂) 小柠檬爱编程 2020-06-26 14:18:41 16695 收藏 13分类专栏: Vue版权 当我们使用右键格式化的时候,就会自动帮我们补全符号,但是,有些符号在eslint中就会报语法错误,那我们需要怎么办呢?可以通过.prettierrc 阅读全文