[Vuejs]-How to pass values to vue data from laravel blade

0👍

Your data must return an object try this syntax:

data() {
    return {
      product: {
        customer: null,
        title: null,
      }
    }
}

0👍

Use props for that and don’t forget to json_encode($customer) when you pass it to the component.

Leave a comment