``` props: ['navList'], ```
时间: 2024-06-14 18:01:24 浏览: 80
vue-coerce-props:强制道具随心所欲
这是 Vue.js 中的一个组件选项,用于接收父组件传递的数据。`props` 中的 `navList` 表示该组件接收一个名为 `navList` 的 prop。在父组件中使用该组件时,可以通过传递一个名为 `navList` 的属性来传递数据,例如:
```html
<my-component :navList="['home', 'about', 'contact']"></my-component>
```
在子组件中,可以通过 `this.navList` 来访问父组件传递的 `navList` 数据。
阅读全文