Vue
Fundamentals of Vue.js

Our First Vue.js App "Hello World"

Outline

GitHub

Vue Chrome Tools

In this video, Erik demonstrates how to create a simple Vue.js app. With a basic understanding of HTML, Erik shows how easy it can be to get started with Vue.js.

NOTES:

<!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>Hello World App</title>
    <script src="https://unpkg.com/vue"></script>
</head>
<body>
    <div id="el">
        <h1>
            {{ hello }}
        </h1>
    </div>
    <script>
        new Vue({
            el: '#el',
            data() {
                return {
                    hello: 'Hello World'
                }
            }
        });
    </script>
</body>
</html>
 

I finished! On to the next chapter