登录社区云,与社区用户共同成长
邀请您加入社区
vue 获取地址栏的各个部分内容vue中常用到的就是 this.$routethis.$route.query 等但是this.$route 到底是啥打印一下console.log(this.$route)结果:可以看出 this.$route 是一个对象,包含parmas、query、fullpath、path等等想要什么部分直接对应的取值就可以了。...
vue中常用到的就是 this.$route this.$route.query 等 但是this.$route 到底是啥 打印一下
this.$route
this.$route.query
console.log(this.$route)
结果: 可以看出 this.$route 是一个对象,包含parmas、query、fullpath、path等等 想要什么部分直接对应的取值就可以了。
前往低代码交流专区
更多推荐
Vue里echarts根据页面大小动态调整/自适应
vue 表单验证
1、6位小写字母和数字必须包含两个字母rules: [{ required: true, message: "XXX不能为空", trigger: "blur" },{ max: 6, message: "最大长度为6位字符", trigger: "blur" },{pattern: /^(?=(?:[^a-z]*[a-z]){2})[a-z0-9]{6,6}$/, //不连续的两位字母// /^
echarts堆叠柱状图
扫一扫分享内容
所有评论(0)