How to Use vue-router in Vue

Step: 1 Create one project. Create one project.  mkdir VueRoute Go to that project and create one file called package.json. Then, copy the following code into the package.json file. { “name”: “vuerouter”, “version”: “1.0.0”, “description”: “”, “main”: “index.js”, “scripts”: { “start”: “webpack-dev-server” }, “author”: “”, “license”: “ISC”, “devDependencies”: { “babel-core”: “^6.25.0”, “babel-loader”: “^7.1.1”, “babel-plugin-transform-runtime”: “^6.23.0”, “babel-preset-es2015”: … Read more

Vue Tutorial: A Complete Step by Step Guide

Vue.js is quite a famous front-end library nowadays. So It is worth taking a look at it. It is simple, minimal core with an incrementally adoptable stack that can handle apps of any scale. Vue (pronounced /vjuː/, of view) is a progressive framework for building user interfaces. The core library is focused on the view layer only … Read more

How To Integrate Admin Template in Angular 12

Hii, Angular Folks,  We will discuss today How to integrate the admin template in the Angular application. We are using Angular Command Line Interface(Angular-CLI) as a kick-starter of the application. Angular is a client-side JavaScript framework that is very fast for building Single Page Applications. Single Page Application(SPA) is an application where you do not require more … Read more

Laravel 5.4 Crud Example: The Complete Guide

Welcome, Web Artisans,  In today’s AppDividend Tutorial, I have shown the code of Laravel 5.4 Crud Example From Scratch. It is a simple Laravel 5.4 tutorial for beginners. For creating Laravel Project, you need to have the following things. PHP >= 5.6.4 OpenSSL PHP Extension PDO PHP Extension Mbstring PHP Extension Tokenizer PHP Extension XML PHP Extension Composer Step 1: Create … Read more

Beginner’s Guide to Setup TypeScript with Webpack

Step 1: Install Typescript globally on your machine. npm install -g typescript Step 2: Create a project folder. Next, you will create a project folder and navigate to it. mkdir typescript cd mkdir Step 3: Create a file called app.ts Save the filename with the .ts extension. Now, write the following code in app.ts. function greeter(person: string) … Read more