Pass data from blade to vue component

前端 未结 4 2011
名媛妹妹
名媛妹妹 2021-01-03 13:58

I\'m trying to learn vue and with that I want to integrate it with laravel too.. I simply want to send the user id from blade to vue component so I can perform a put request

4条回答
  •  情歌与酒
    2021-01-03 14:44

    To pass down data to your components you can use props. Find more info about props over here. This is also a good source for defining those props.

    You can do something like:

    
    

    OR

    
    

    And then in your Example.vue file you have to define your prop. Then you can access it by this.userId.

    Like :

    
    

提交回复
热议问题