I'm new in Vue and I try to set variable from Laravel controller to div using vuejs.
I've set variable in laravel controller and pass to the view on the following way:
$Category = Session::get('Category');
//I was previously set that session field and it's string 'category'
return view('index', compact('Category');
How i can read that variable in vuejs?