Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases now! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Vue.js 3 Cookbook

You're reading from   Vue.js 3 Cookbook Discover actionable solutions for building modern web apps with the latest Vue features and TypeScript

Arrow left icon
Product type Paperback
Published in Sep 2020
Publisher Packt
ISBN-13 9781838826222
Length 562 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Heitor Ramon Ribeiro Heitor Ramon Ribeiro
Author Profile Icon Heitor Ramon Ribeiro
Heitor Ramon Ribeiro
Arrow right icon
View More author details
Toc

Table of Contents (13) Chapters Close

Preface 1. Understanding Vue 3 and Creating Components 2. Introducing TypeScript and the Vue Ecosystem FREE CHAPTER 3. Data Binding, Form Validations, Events, and Computed Properties 4. Components, Mixins, and Functional Components 5. Fetching Data from the Web via HTTP Requests 6. Managing Routes with vue-router 7. Managing the Application State with Vuex 8. Animating Your Application with Transitions and CSS 9. Creating Beautiful Applications Using UI Frameworks 10. Deploying an Application to Cloud Platforms 11. Directives, Plugins, SSR, and More 12. Other Books You May Enjoy

Creating dynamic routes

Now, with our page views created, we need to create our routes and make them accept parameters, transforming them into dynamic routes. In the following steps, we will create the dynamic routes of the application:

  1. Open index.js in the src/router folder.
  2. First, we need to import the four new pages – List, View, Edit, Create, and Update:
import List from '@/views/List.vue';
import View from '@/views/View.vue';
import Edit from '@/views/Edit.vue';
import Create from '@/views/Create.vue';
  1. On the routes array, we will add a new route object for each one of the pages that were imported. In this object, there will be three properties: name, path, and component.
  2. For the list route, we will define name as 'list', path as '/', and component as the imported List component:
{
path: '/',
name: 'list',
component: List,
},
  1. On the view route, we will define name as 'view', path...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime