I'm using netbeans as an editor and trying to work my way through the laracast vue videos including https://laracasts.com/series/learning-vue-step-by-step/episodes/1
<script> src="https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.12/vue.js"</script>
<div id="app">
<h1>
{{message}}
</h1>
</div>
var data = {message: "hi there"}
new Vue({
el: '#app',
data: data
});
when I check chrome dev tools I see:
Uncaught ReferenceError: Vue is not defined
Am I doing something wrong with the CDN?
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.12/vue.js"></script>
.... You closed the script tag too early – Paul Fitzgerald