为了账号安全,请及时绑定邮箱和手机立即绑定

将 props 传递给路由器链接 - Vue.js

将 props 传递给路由器链接 - Vue.js

偶然的你 2023-11-12 22:15:53
我试图传递我的路由器链接名称的道具,但它根本不起作用。我究竟做错了什么?按钮组件:<template>      <router-link :to="{ name: nextStep }" tag="button" class="button">Back</router-link>      <router-link :to="{ name: previousStep }" tag="button" class="button">Next</router-link></template><script>    export default {        props: {            nextStep: {                type: String,                default: null,            },            previousStep: {                type: String,                default: null            }        },         }</script>当我使用该组件时  <Buttons :nextStep="Firststep" :previousStep="Secondstep" />我的路由器 js 确保名称正确{    path: "/firststep",    name: "Firststep",    component: FirstStep  },  {    path: "/secondstep",    name: "Secondstep",    component: SecondStep  },
查看完整描述

1 回答

?
茅侃侃

TA贡献1842条经验 获得超21个赞

尝试删除绑定标志:

<Buttons nextStep="Firststep" previousStep="Secondstep" />

如果您使用绑定符号,则值应定义为属性。


查看完整回答
反对 回复 2023-11-12
  • 1 回答
  • 0 关注
  • 91 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信