vue
文章平均质量分 63
i`m_ztc
这个作者很懒,什么都没留下…
展开
-
Vue登录跳转和跨域请求数据
配置 (1)安装router npm install vue-router --save (2)配置跨域代理 proxyTable: { “/api”:{ target:“http://localhost:8080”,//跨域地址 changeOrigin:true, pathRewrite:{ ‘^/api’:’’ } } }, vue前台跨域请求获得数据 this.$http.get(...原创 2018-11-19 10:55:05 · 2193 阅读 · 0 评论 -
Vue的一些简单使用
v-model 通常实现一些表单数据的双向绑定 <html lang="en"> <head> <meta charset="UTF-8"> <title&a原创 2018-11-15 11:37:42 · 183 阅读 · 0 评论