[Vuejs]-Uncaught ReferenceError: Vue is not defined

7👍

src is attribute of script tag, so:

<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.12/vue.js"></script>

0👍

Please note that while using Vue with laravel blade files. You had to save those Vue code in a separate file with vue extension and then add them in blade files.
as indicate here. Otherwise I believe both will try to interpret double mustache and to cater that you had to rewrite a lot of either lib.

Leave a comment