Invalid prop: type check failed for prop “router“. Expected Boolean, got String with value “true“.

Invalid prop: type check failed for prop “router“. Expected Boolean, got String with value “true“.

router 报错源码

下面展示一些 内联代码片

<el-menu
      background-color="#545c64"
      text-color="#fff"
      active-text-color="blue" unique-opened :collapse="isCollapse" router="true" :default-active="activePath">

router =“true” 改为 :router=“true” (手册要求是boole 值 只有数据绑定后才是 boole 类型,不然普通写法就是字符串类型)

猜你喜欢

转载自blog.csdn.net/m0_37678007/article/details/128431297