Looking for guidance on syntax highlighting with Vue.js. I've included the code snippet below, but for some reason the message "This is a test" isn't appearing as expected. Can someone please point out what mistake I may be making?
<html>
<head>
</head>
<body>
<div id ="app">
<h1>{{message}}</h1>
</div>
<script src="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="97e1e2f2d7a5b9a2b9a6a0">[email protected]</a>/dist/vue.js"> </script>
<script type="text/javascript">
new Vue({
e1:'#app',
data:{
message:'This is a test'
}
})
</script>
</body>
</html>