Hello the problem is the following when I try to tenderizer information of the js to the html file to show it with vuejs it shows the brackets in the navigator as if it was not receiving information, I have vue installed global in npm
JS
new Vue({
el: '#app',
data: {
message: 'Hello world'
}
});
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>title</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="app" v-cloak>
<!--This markup will be the template of the root instance-->
<h1>My Vue.js App</h1>
<p >{{message}}</p>
</div>
</body>
</html>