CoderFunda
  • Home
  • About us
    • Contact Us
    • Disclaimer
    • Privacy Policy
    • About us
  • Home
  • Php
  • HTML
  • CSS
  • JavaScript
    • JavaScript
    • Jquery
    • JqueryUI
    • Stock
  • SQL
  • Vue.Js
  • Python
  • Wordpress
  • C++
    • C++
    • C
  • Laravel
    • Laravel
      • Overview
      • Namespaces
      • Middleware
      • Routing
      • Configuration
      • Application Structure
      • Installation
    • Overview
  • DBMS
    • DBMS
      • PL/SQL
      • SQLite
      • MongoDB
      • Cassandra
      • MySQL
      • Oracle
      • CouchDB
      • Neo4j
      • DB2
      • Quiz
    • Overview
  • Entertainment
    • TV Series Update
    • Movie Review
    • Movie Review
  • More
    • Vue. Js
    • Php Question
    • Php Interview Question
    • Laravel Interview Question
    • SQL Interview Question
    • IAS Interview Question
    • PCS Interview Question
    • Technology
    • Other

28 December, 2020

Getting started with Vue.js

 Programing Coderfunda     December 28, 2020     Vue.js Tutorial     No comments   

 Getting started with Vue.js

In the previous chapter, we have seen several ways to use and install Vue.js in your project. In this article, we shall see how to check the version of the Vue.js, the advantages and disadvantages of using Vue.js in your project, the first example and the explanation of all the general points related to the example.

Advantages of using Vue.js

Vue.js is one of the newest software technologies widely used for web development and building single-page applications. As you can guess by its name, it is used primarily for UI or view side of the project. It is a JavaScript based framework developed by Evan You (a former Google employee who was then working on Angular) for building the rich client-side application using JavaScript. Let's see the advantages of using Vue.js in your project:

Following is the list of advantages of using Vue.js:

Very Small in Size

One of Vue.js' biggest advantages is that it is very small in size. The success of a JavaScript framework very much depends on its size and this exciting JavaScript plug-in is only 18-21KB, so you can download and use it very easily in no time.

Easy to Understand and Code

The Vue.js framework has a very simple structure and very easy to understand. It is one of the reasons for the popularity of this framework. If you are familiar with HTML and JavaScript, you can easily code in Vue.js. The users can easily add Vue.js to their web project because of its simple structure and develop applications.

Simple Integration with Existing Applications

Vue.js has a lot of components for everything and can be integrated with the existing applications very quickly. You can integrate it with any application that is written in JavaScript.

Flexible in nature

Vue.js's flexible nature also makes it easy to understand for the developers of React.js, Angular.js, and any other new JavaScript framework. It provides a lot of flexibility to use virtual nodes to write HTML files, JavaScript files, and pure JavaScript files.

Components

You can create reusable custom elements in Vue.js applications.

Easy, comprehensive & detailed documentation

Vue.js provides very easy, comprehensive, and detailed documentation, so the developers who have little idea about HTML and JavaScript can use it to code.

Virtual DOM

Vue.js uses virtual DOM similar to other existing frameworks such as ReactJS, Ember, etc. Virtual DOM is a light-weight in-memory tree representation of the original HTML DOM and updated without affecting the initial DOM.

Two-Way Communication

Vue.js provides two-way communications with its MVVM architecture that makes it very easy to handle HTML blocks.

Companies which are using Vue.js

Vue.js has started gaining popularity day by day because famous companies have already started using it in real-time. There are several companies which are successfully using Vue.js in the real scenario. Let's see some example:

Facebook: The biggest successful company which is using Vue.js in their real-life project is Facebook. Facebook is using this framework for the marketing side of their Newsfeed.

Adobe: Adobe is using Vue.js for its product called Portfolio. Using the Vue.js framework's easy integration advantage, the company has already migrated their existing codebase to the Vue.

Xiaomi: Xiaomi is also using Vue.js to build their products catalog to provide users a reactive experience.

Alibaba: One of the most significant public companies in China has used Vue.js.

Some other notable companies which are using Vue.js in their project are:

  • Grammarly
  • Netflix
  • Laracast
  • Behance
  • Gitlab
  • Euronews
  • Codeship
  • Livestorm
  • Wizzair etc.

Check the version of your installed Vue.js

If you are already familiar with Node.js and have installed Vue.js CLI on your system, you can check the version of your installed Vue.js using the following command on your Node.js command prompt:

  • Open the Node.js command prompt and run the following command:
  1. vue --version  

Getting started with Vue.js
  • If it responds well, go ahead to the next step to create your new project. In the above example, you can see that Vue.js version 2.9.6 is installed successfully. Now, run the following command to create a new project:

Syntax:

  1. vue create <YourAppName>  
  • Run the vue create myfirstapp command to create an app named
Getting started with Vue.js
  • You have seen an error that vue create command works only with Vue CLI 3, and you are using an older version. Now, use the following command to uninstall the older version and install the new one.
  1. npm uninstall -g vue-cli  
  2. npm install -g @vue/cli  

Getting started with Vue.js
  • You can see that the older version of Vue.js is uninstalled. Now, install the newer version.
Getting started with Vue.js
Getting started with Vue.js
  • Now, the newer version of Vue CLI is installed. You can check the Vue CLI version by using the vue --version
Getting started with Vue.js
  • You can see that the latest Vue CLI version is installed. Now, run the vue create myfirstapp command to create an app named

Create Vue.js first app (Using vue create command)

  • Run the vue create myfirstapp command on Node.js command prompt.
Getting started with Vue.js
  • This process may take some time. Wait until the creating app process is completed. After the successful completion, you will get a message on the command line that the project is successfully created.
Getting started with Vue.js
  • Now, go to your application's location by executing the following command.
  1. cd myfirstapp  

Getting started with Vue.js
  • Execute the following command to run your Vue.js app on the browser.
  1. npm run serve  

Getting started with Vue.js
  • Here, you can see that your app is compiled successfully, and the development server is started. Copy the local address and paste it on your Google Chrome browser to open the app.
Getting started with Vue.js

Explore Folder structure of Vue Application

You have already executed your app on the web browser. Now, it's time to explore the complete files and folders of your project. You can select any IDE of your choice. Here, we have chosen Visual Studio Code IDE for deploying our application.

Open the Visual Studio Code and load your project in the IDE. After loading your project, click on the public folder as well as the src folder. These two folders contain the most important files of your project.

Getting started with Vue.js

Package.json: The Package.json folder contains all configuration of your app. You don't need to touch that folder.

Index.html: The most important file of your app is index.html file. It contains all the data that is appeared on the UI of your app. This is the only one div element which Vue will use to attach the DOM. See the index.html file:

  1. <!DOCTYPE html>  
  2. <html lang="en">  
  3.   <head>  
  4.     <meta charset="utf-8">  
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">  
  6.     <meta name="viewport" content="width=device-width,initial-scale=1.0">  
  7.     <link rel="icon" href="<%= BASE_URL %>favicon.ico">  
  8.     <title><%= htmlWebpackPlugin.options.title %></title>  
  9.   </head>  
  10.   <body>  
  11.     <noscript>  
  12.       <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>  
  13.     </noscript>  
  14.     <div id="app"></div>  
  15.     <!-- built files will be auto injected -->  
  16.   </body>  
  17. </html>  

Getting started with Vue.js

Src/main.js: main.js is the main JavaScript file which is used to drive your app.

  1. import Vue from 'vue'  
  2. import App from './App.vue'  
  3. Vue.config.productionTip = false  
  4. new Vue({  
  5.   render: h => h(App),  
  6. }).$mount('#app')  

Getting started with Vue.js

In the above code of main.js, the first line specifies the import of the Vue library, and the second line is used to import the App Component from app.vue. The productionTip is set to false to avoid the message "you're in development mode" in the console. After that, Vue instance is created by assigning it to DOM element #app, which has already been defined in index.html file and specified to use the App component.

Src/App.vue: The App.vue is single file component that contains three parts: HTML, CSS and JAVASCRIPT. It is used to manage the single file components of your app.

  1. <template>  
  2.   <div id="app">  
  3.     <img alt="Vue logo" src="./assets/logo.png">  
  4.     <HelloWorld msg="Welcome to Your Vue.js App"/>  
  5.   </div>  
  6. </template>  
  7. <script>  
  8. import HelloWorld from './components/HelloWorld.vue'  
  9.   
  10. export default {  
  11.   name: 'App',a  
  12.   components: {  
  13.     HelloWorld  
  14.   }  
  15. }  
  16. </script>  
  17. <style>  
  18. #app {  
  19.   font-family: Avenir, Helvetica, Arial, sans-serif;  
  20.   -webkit-font-smoothing: antialiased;  
  21.   -moz-osx-font-smoothing: grayscale;  
  22.   text-align: center;  
  23.   color: #2c3e50;  
  24.   margin-top: 60px;  
  25. }  
  26. </style>  

Getting started with Vue.js

Src/component/HelloWorldComponent: This file is included in HelloWorld.vue file. This file contains all the style and HTML which you see when you open your app in the browser.

  1. <style scoped>  
  2. h3 {  
  3.   margin: 40px 0 0;  
  4. }  
  5. ul {  
  6.   list-style-type: none;  
  7.   padding: 0;  
  8. }  
  9. li {  
  10.   display: inline-block;  
  11.   margin: 0 10px;  
  12. }  
  13. a {  
  14.   color: #42b983;  
  15. }  
  16. </style>  

The <style scoped> attribute is used here to limit the above CSS to this component only. After using the <style scoped> attribute, your CSS would not be leaked to another part.

Getting started with Vue.js

The <script> part: This part is exported with the name 'HelloWorld' and the data which will be displayed in the output is stored in "msg" variable.

  1. <script>  
  2. export default {  
  3.   name: 'HelloWorld',  
  4.   props: {  
  5.     msg: String  
  6.   }  
  7. }  
  8. </script>  

Getting started with Vue.js

This is all about the file and folder structure of a Vue.js app. It is essential to know before start developing apps in Vue.js.


Source by : Javatpoint.com
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg
Email ThisBlogThis!Share to XShare to Facebook

Related Posts:

  • Vue.js Reactivity System  Vue.js Reactivity SystemThe reactivity system is one of the most distinctive features of Vue.js. In Vue.js, models are plain JavaScript o… Read More
  • Vue.js Render functions  Vue.js Render functionsVue.js recommends us to use templates to build HTML. Here, we can use the render function as a closer-to-the-compi… Read More
  • Vue.js Routing  Vue.js RoutingVue.js does not have a built-in router feature, but you can easily create a single page application that supports routing u… Read More
  • Vue.js Mixins  Vue.js MixinsIn Vue.js, mixins are a set of defined logic, stored in a predefined way specified by Vue.js. We can use these mixins over a… Read More
  • Vue.js Tutorial Vue.js TutorialVue.js Tutorial Vue.js Tutorial open link Vue.js Installation Vue.js Getting started Declarative Rendering&nb… Read More
Newer Post Older Post Home

0 comments:

Post a Comment

Thanks

Meta

Popular Posts

  • Spring boot app (error: method getFirst()) failed to run at local machine, but can run on server
    The Spring boot app can run on the online server. Now, we want to replicate the same app at the local machine but the Spring boot jar file f...
  • Log activity in a Laravel app with Spatie/Laravel-Activitylog
      Requirements This package needs PHP 8.1+ and Laravel 9.0 or higher. The latest version of this package needs PHP 8.2+ and Laravel 8 or hig...
  • Laravel auth login with phone or email
          <?php     Laravel auth login with phone or email     <? php     namespace App \ Http \ Controllers \ Auth ;         use ...
  • Vue3 :style backgroundImage not working with require
    I'm trying to migrate a Vue 2 project to Vue 3. In Vue 2 I used v-bind style as follow: In Vue 3 this doesn't work... I tried a...
  • Failed to install 'cordova-plugin-firebase': CordovaError: Uh oh
    I had follow these steps to install an configure firebase to my cordova project for cloud messaging. https://medium.com/@felipepucinelli/how...

Categories

  • Ajax (26)
  • Bootstrap (30)
  • DBMS (42)
  • HTML (12)
  • HTML5 (45)
  • JavaScript (10)
  • Jquery (34)
  • Jquery UI (2)
  • JqueryUI (32)
  • Laravel (1017)
  • Laravel Tutorials (23)
  • Laravel-Question (6)
  • Magento (9)
  • Magento 2 (95)
  • MariaDB (1)
  • MySql Tutorial (2)
  • PHP-Interview-Questions (3)
  • Php Question (13)
  • Python (36)
  • RDBMS (13)
  • SQL Tutorial (79)
  • Vue.js Tutorial (68)
  • Wordpress (150)
  • Wordpress Theme (3)
  • codeigniter (108)
  • oops (4)
  • php (853)

Social Media Links

  • Follow on Twitter
  • Like on Facebook
  • Subscribe on Youtube
  • Follow on Instagram

Pages

  • Home
  • Contact Us
  • Privacy Policy
  • About us

Blog Archive

  • September (100)
  • August (50)
  • July (56)
  • June (46)
  • May (59)
  • April (50)
  • March (60)
  • February (42)
  • January (53)
  • December (58)
  • November (61)
  • October (39)
  • September (36)
  • August (36)
  • July (34)
  • June (34)
  • May (36)
  • April (29)
  • March (82)
  • February (1)
  • January (8)
  • December (14)
  • November (41)
  • October (13)
  • September (5)
  • August (48)
  • July (9)
  • June (6)
  • May (119)
  • April (259)
  • March (122)
  • February (368)
  • January (33)
  • October (2)
  • July (11)
  • June (29)
  • May (25)
  • April (168)
  • March (93)
  • February (60)
  • January (28)
  • December (195)
  • November (24)
  • October (40)
  • September (55)
  • August (6)
  • July (48)
  • May (2)
  • January (2)
  • July (6)
  • June (6)
  • February (17)
  • January (69)
  • December (122)
  • November (56)
  • October (92)
  • September (76)
  • August (6)

  • Failed to install 'cordova-plugin-firebase': CordovaError: Uh oh - 9/21/2024
  • pyspark XPath Query Returns Lists Omitting Missing Values Instead of Including None - 9/20/2024
  • SQL REPL from within Python/Sqlalchemy/Psychopg2 - 9/20/2024
  • MySql Explain with Tobias Petry - 9/20/2024
  • How to combine information from different devices into one common abstract virtual disk? [closed] - 9/20/2024

Laravel News

  • Chargebee Starter Kit for Billing in Laravel - 5/20/2025
  • Streamline Pipeline Cleanup with Laravel's finally Method - 5/18/2025
  • Validate Controller Requests with the Laravel Data Package - 5/19/2025
  • Deployer - 5/18/2025
  • Transform JSON into Typed Collections with Laravel's AsCollection::of() - 5/18/2025

Copyright © 2025 CoderFunda | Powered by Blogger
Design by Coderfunda | Blogger Theme by Coderfunda | Distributed By Coderfunda