No, unless this Vue component is being defined in a script tag within a Blade view template?
Oct 5, 2022
4
Level 7
Php variable in Vue component
Is there any way i can use a php variable in a vue component. Check if it exists and assign it to a prop.
const cat_thread = {{ (isset($op) && $op) ? json_encode($op) : 'null'; }};
export default {
data() {
return {
message:"",
cat_thread:cat_thread,
// dataEntries: null,
categories: []
}
},
Level 104
Please or to participate in this conversation.