2020年2月4日

vuecli项目如何使用反向代理

摘要: 1、找到config文件夹下的index.js文件。 2、配置 这个属性。 proxyTable: { '/api': { target: 'http://106.12.183.239', changeOrigin: true, pathRewrite: { '^/api': '' } } }, 阅读全文

posted @ 2020-02-04 14:19 漫思 阅读(503) 评论(0) 推荐(0) 编辑

构建vue-cli npm安装webpack报错原因 error -4075解决办法

摘要: 在构建vue-cli脚手架的时候,虽说vue-cli内部自带webpack ,但是最好手动安装webpack,无奈npm install webpack -g 的时候总是报错误;错误内容如下: $ npm install webpack -gnpm ERR! path C:\Users\Admini 阅读全文

posted @ 2020-02-04 11:57 漫思 阅读(1309) 评论(0) 推荐(0) 编辑

VUE中演示v-for为什么要加key

摘要: 说到这个问题想必要举个例子了 image 没有key <div id="app"> <div> <input type="text" v-model="name"> <button @click="add">添加</button> </div> <ul> <li v-for="(item, i) i 阅读全文

posted @ 2020-02-04 00:30 漫思 阅读(693) 评论(0) 推荐(0) 编辑

vue中$router以及$route的使用

摘要: 路由基本概念 route,它是一条路由。 { path: '/home', component: Home } routes,是一组路由。 const routes = [ { path: '/home', component: Home }, { path: '/about', component 阅读全文

posted @ 2020-02-04 00:21 漫思 阅读(8778) 评论(0) 推荐(1) 编辑

导航