0👍
Your data must return an object try this syntax:
data() {
return {
product: {
customer: null,
title: null,
}
}
}
- [Vuejs]-Prevent Vuejs application from rewriting URL
- [Vuejs]-How to have manage a prop in an html form in Vue.js / infinite loop prevention via computed property
0👍
Use props for that and don’t forget to json_encode($customer)
when you pass it to the component.
Source:stackexchange.com