Vue Router Documentation: https://router.vuejs.org/installation.html 1) In terminal run the command: npm install vue-router 2) As we will have many routes, so we will make a new file for that inside resources -> js create router.js file. 3) Open router.js file and import Vue & Router: import Vue from 'vue' import Router from 'vue-router' Now, we will use the route. So, in router.js file: Vue . use ( Router ) const routes = [ { path : '/my-new-vue-route' , component : } ]; Here, we have given a path url name (you can give anything as url name). and the component is blank. we will first make a folder called pages inside resources -> js -> components . and, create a file inside pages folder called myFirstVuePage.vue . 4) Inside ...