如何在vue的router-link中添加参数
习惯在router中加上一些参数变量,官方没看到例子,自己随便写了几个,最初写成这样, :to="/user/this.$store.state.user_id/article/create'",发现不对,改成下面这样,OK。写文章
·
习惯在router中加上一些参数变量,
官方没看到例子,自己随便写了几个,最初写成这样, :to="/user/this.$store.state.user_id/article/create'",发现不对,改成下面这样,OK。
<router-link :to="'/user/'+this.$store.state.user_id+'/article/create'" class='menu-link'>写文章</router-link>
更多推荐
已为社区贡献5条内容
所有评论(0)