SoFunction
Updated on 2025-04-05

Study notes of helloworld

Is a library for building interactive web interfaces.

Provides MVVM data binding and a composable component system with a simple and flexible API.

Let’s first look at a simple example, Hello, World!

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Vuestudy</title>
<script src="/vue/1.0.11/"></script>
</head>
<body>
<div >
 {{ message }}
</div>
<!-- JavaScript The code needs to be placed at the end(SpecifiedHTMLAfter the element) -->
<script>
new Vue({
  el:'#app',
  data: {
    message:'Hello World!'
  }
});
</script>
</body>
</html>

For more articles about learning, please see here:

JavaScript library introduction tutorial

Summary of basic knowledge