07-基础-HelloWorld

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>

<body>
    <!-- 需求/目的:  把数据渲染到页面中 -->
    <!-- 1. 提供容器 -->
    <div id="app">
        <!-- 5. 在视图中使用data的数据   -->
        <p>{{str}}</p>
    </div>
    <!-- 2. 引入 -->
    <script src="./vue.js"></script>
    <script>
        // 模拟ajax返回的数据
        var str = "abc";
        // 3. 实例化Vue对象
        var vm = new Vue({
            // 4. 设置Vue的选项
            el: "#app",
            data: {
                str: str
            }
        });
    </script>

</body>

</html>
 

猜你喜欢

转载自www.cnblogs.com/divtab/p/10939939.html