In this tutorial let's quickly go over and learn how easy it is to install VueJS and create a simple Hello World application using VueJS.

The following are the steps.

1. Create a blank project

Create a blank project folder and open it in your editor, I am using VSCode. Create a new blank file named index.html and generate or write the basic HTML:5 structure in the file.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    
</body>
</html>

2. Include the development version script of Vue

Although there are other advanced and better ways to install and include Vue in your project, For learning purposes we will directly include the VueJS script in our HTML file.

You can include the latest version by including the following script inside the head tags of your page.


<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <!-- development version, includes helpful console warnings -->
    <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>

3. Hello World from Vue

Alright, Time to show our Vue skills to the world by creating our very first VueJS Application.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <!-- development version, includes helpful console warnings -->
    <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
    <div id="app">
        {{ message }}
    </div>
</body>
<script type="text/javascript">
    var app = new Vue({
        el: '#app',
        data: {
            message: 'Hello World!'
        }
    });
</script>
</html>

4. Run application in a browser

If you are using VSCode and have installed live-server extension. Right-click anywhere on the page and choose the option 'Open with Live Server'.

open with live-server VueJS

On running the index.html page in the browser and you should see Hello World ! on the page. For now, Don't worry if you don't understand what's going on behind the scenes and how Vue is printing that on screen.

Vue JS Hello World

[WP-Coder id="1"]

Comments