摘要:
https://blog.csdn.net/crazywoniu/article/details/80942642 Vue 路由传递参数与 Vue传递参数不同 vue-router传递参数分为两大类 编程式的导航 router.push声明式的导航 <router-link>编程式的导航 route 阅读全文
摘要:
es6引用模块import后面加上花括号{}和不加花括号的区别在使用import语法引用模块时,如何正确使用{} 例如:有两个文件,home.js、user.js 当需要在home.js中引入user.js的时候 //home.js import user from './user'; 对于上面的这 阅读全文
摘要:
一、父子组件 1.1父传子(props) 页面数据效果如下 这里要稍微注意一下,父组件所传递参数如果是需要在生命周期中获取赋值,就不能绑定在mounted中,否则子组件方法中this调用不会成功。生命周期顺序:父beforeMount 子beforeCreate……子mounted 父mounted 阅读全文
摘要:
关于axios axios中,get请求和post请求携带参数的方式不一样,具体如下: axios.get(url, { params: { id: 123456 } }).then(res = {}) axios.post(url, { id: 123456 post请求传参 需要 使用内置库QS 阅读全文
摘要:
document常用属性: document.title//设置文档标题,与HTNL中的title标签等价 document.bgColor//设置页面背景颜色 document.fgColor//设置页面前景色 document.fileCreateDate//文件建立日期,只读属性 docume 阅读全文