Challenge: Create a Minimal Blog Engine Using Vue Router
Explore building a minimal blog engine by using Vue Router to create a home page with post links, a posts listing page that fetches and displays posts, and a single post page that shows individual post details by ID.
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
titleandbodyproperties (the title of each post must link to the post itself) ...