Challenge: Create a Minimal Blog Engine Using Vue Router
Assess your learning by creating a minimal blog engine using Vue Router in Vue.
Task
Create a minimal blog engine by using Vue Router for navigation. Your blog should have:
A home page with links to the posts
A posts listing page, which fetches and lists the posts using the
title
andbody
properties (the title of each post must link to the post itself)A single post page that fetches the requested post by its ...