[Vuejs]-Mounting VueJS to top level div & user submitted content

0👍

You can disable the interpretation of the curly braces from Vue.js by Laravel’s blade engine by using an @ in front of them. They will remain untouched by PHP this way and will leave them to get picked up by Vue.js

Hello, @{{ name }}.

Check out the section on javascript frameworks:

https://laravel.com/docs/5.4/blade#displaying-data

Leave a comment