1、css写箭头
2、405报错,请求的get post方法
3、$height:200px; //全局变量声明不在大花括号内
4、async await promise
await 后面放置的就是返回promise对象的一个表达式
5、深度监听!
css:
word-wrap: break-word;设置文字换行
6、图片
图片的像素设置:即在src后面拼接:?size=22*22
7、vue 使用 this.$router.push() 传参
1、
this.$router.push({name: 'Journalh', params: {id: obj.id}})
// 获取参数
this.$route.params.id
2、
this.$router.push({path: 'Journalh', query: {id: obj.id}})
// 获取参数
this.$route.query.id