I have a simple Vue instance and want to pass json from the backend to vue without HTTP request because it's always the same.
I've tried do this with props, but it doesn't work...
In DOM it's looks like <div id="my-component" prices="[object Object]">
Vue debug tool show me image as an empty string, and in console undefined
<div id="my-component" :prices="{{ $prices }}">
</div>
<script>
new Vue({
el: '#my-component',
props: ['prices'],
mounted: function() {
console.log(this.image);
},
});
</script>
where $prices
json encoded array.
I don't know if there is any Laravel helper for this but I will present a generic approach.
One option would be to store you JSON data in a global variable and the page loads and then use it in your js files.
Basically you need to generate some html similar to:
Then from javascript you should be able to access the myApp.userData variable and use it when initializing the Vue component.
Here is an example:
Your solution was nearly there but you don't need a prop, rather use a data attribute and assign the JSON via a method:
You would just assign your Laravel data to the setJson methods payload, i.e.