I am attempting to launch the Vuejs hello world project on a Cloud 9 development environment. Despite its simplicity, I am unable to determine why it is not rendering, even though there are no visible errors. What could be the issue here?
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="https://unpkg.com/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="1a6c6f7f5a283428342e">[email protected]</a>"></script>
<script type="text/javascript">
new Vue({
el: '#app'
data: {
message: 'Hello World!'
}
});
</script>
</head>
<body>
<div id="app">{{ message }}</div>
</body>
</html>