[Vuejs]-Handle content which contains laravel blade code in vuejs

0👍

please use below code
{{ $title }} – use for laravel blade
{{{$title}}} – use for Vue js in laravel blade page

if you want to bind both please try with below code

In script tag
var title = '{{$title}}';
In Vue js CLI
data:return{ title:'{{$title}}' }

If you still getting a problem, then please brief all about your problem with the code I will resolve it.

0👍

I try to parse README.md file from hexters/rolevel and I render the README.md content with vuejs, and my apps error and Blank

Leave a comment