VueJS implementation or installation

In this tutorial, you will learn how to install or implement VueJS 2 in your web application.

To implement VueJS in your application you need to download VueJS from the official site of VueJS or you can use VueJS CDN.


Download vue.js

Official Website of VueJShttps://vuejs.org/v2/guide/installation.html

Download VueJS from Official Website
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>VueJS</title>
</head>
<body>
    <h1>Welcome to VueJS</h1>
    <script src="vue.js"></script>
</body>
</html>

Using VueJS CDN

// Production Version
https://unpkg.com/vue/dist/vue.min.js

// Development Version
https://unpkg.com/vue/dist/vue.js
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>VueJS</title>
</head>
<body>
    <h1>Welcome to VueJS</h1>
    <script src="https://unpkg.com/vue/dist/vue.js"></script>
</body>
</html>

Leave a Reply

Your email address will not be published. Required fields are marked *