路由传参

这里就记录下用法,方便下次忘记的时候可以查看

  this.$router.push({
            name: 'VideoPage',
            params: { videoIndex: this.whichHost}
          });

在组件中使用:

this.$route.params.videoIndex

你可能感兴趣的:(路由传参)