I'm having some trouble with my vue.js code. When I try to run this example, the output in the browser is showing "product" instead of "Boots".
<div id="app">
<h2>{{product}}</h2>
</div>
<script src="https://unpkg.com/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="1e686b7b5e2c302b302f28">[email protected]</a>/dist/vue.js">
const app = new Vue({
el: "#app",
data: {
product: "Boots"
}
})
</script>