HelloWorld

46 阅读1分钟

HelloWorld

代码

<!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">
    <!-- 开发环境版本,包含了有帮助的命令行警告 -->
    <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
    <title>Vue-helloworld</title>
</head>

<body>
    <div id="demo">
        <h1>Hello,{{name}},{{address}}</h1>
    </div>
    <script>
        //阻止 vue 在启动时生成生产提示。
        Vue.config.productionTip = false;
        //创建Vue实例
        new Vue({
            el: "#demo",
            data: {
                name: "xmg",
                address: "hangzhou"
            }
        })
    </script>
</body>

</html>