<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <div id="app">
        <h1>会变化 {{msg}}</h1>
        <p>--------------------</p>
        <h1 v-once>不会变化 {{msg}}</h1>
    </div>
    <script src="js/vue.3.2.2.js"></script>
    <script>
        // 1、创建Vue的实例对象
        const app = Vue.createApp({
            data(){//定义数据
                return {
                    msg:'你好!'
                }
            }
        }).mount('#app');
    </script>
</body>
</html>

 

相关文章:

  • 2021-06-22
  • 2021-09-12
  • 2021-07-08
  • 2021-12-03
  • 2021-12-29
  • 2021-08-12
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-09
  • 2022-12-23
  • 2022-12-23
  • 2021-05-02
  • 2022-12-23
相关资源
相似解决方案