Здравствуйте. Подключаю код vue.js к проекту, а он не работает. Подскажите, пожалуйста, что делаю не так.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div id="v-model-basic" class="demo">
<input v-model="message" placeholder="edit me" />
<p>Message is: {{ message }}</p>
</div>
</body>
</html>
<style>
.demo {
font-family: sans-serif;
border: 1px solid grey;
border-radius: 2px;
padding: 20px 30px;
margin-top: 1em;
margin-bottom: 40px;
user-select: none;
overflow-x: auto;
}
</style>
<script src="https://unpkg.com/vue@next">
Vue.createApp({
data() {
return {
message: ''
}
}
}).mount('#v-model-basic')
</script>