检查了关于Stacking Overflow中有关道具的大多数问题,但我仍在努力将其应用于我正在工作的东西上。
我有一个提取所有菜单的全局组件。提取后,它将构建或构建列表(菜单):
Vue.component('sidenav', require('./components/Sidenav.vue'));
已经做到了:
-在 customer / index.vue
中添加prop: [menus]
-在路由器(客户)
中将 prop设置为true
-将菜单绑定到 Sidenav.vue :<input type="hidden" :menus="menus">
需要实现:
我想使用道具而不是调用API将数据(“菜单”)发送到 customer / index.vue 。