Vue 简单的开始

Vue.js 简单滴起步

阅读之前,您需要了解的知识:
HTML
CSS
JavaScript

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Vue</title>
    <script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js"></script>
</head>

<body>
    <div id="vue_det">
        <h1>site : {{site}}</h1>
        <h1>url : {{url}}</h1>
        <h1>{{details()}}</h1>
    </div>
    <script type="text/javascript">
        var vm = new Vue({
            // 获取id
            el: '#vue_det',
            //   添加内容
            data: {
                site: "甜心小馒头",
                url: "https://blog.csdn.net/weixin_46474458",
                alexa: "10000"
            },
            methods: {
                details: function() {

                    return this.site + " - 关注小馒头学到更多哟~";
                }
            }
        })
    </script>
</body>

</html>

初级学者可以去这个菜鸟教程官网看看:https://www.runoob.com
Vue 简单的开始_第1张图片

你可能感兴趣的:(笔记,vue.js)