How to get Vue Router Params in Vuex?

前端 未结 0 928
孤独总比滥情好
孤独总比滥情好 2021-02-14 17:07

I\'m not able to use

this.$route.params
route.params
router.params

how do I get the params of $route in my actions?

回答
  •  被撕碎了的回忆
    2021-02-14 17:50

    in your actions.js or store.js

    import router from 'path/to/router'
    console.log(router.currentRoute.params)
    

    0 讨论(0)
提交回复
热议问题