Creating Dynamic Routes in a Nuxt Application

1 · CSS-Tricks · July 30, 2019, 3:15 p.m.
In this post, we’ll be using an ecommerce store demo I built and deployed to Netlify to show how we can make dynamic routes for incoming data. It’s a fairly common use-case: you get data from an API, and you either don’t know exactly what that data might be, there’s a lot of it, or it might change. Luckily for us, Nuxt makes the process of creating dynamic routing very seamless. In the last post, we showed how to … Read article The post Creating Dynamic Routes in a Nuxt Application appeared fir...