Challenge: Create a Minimal Blog Engine Using Vuex
Assess your learning by creating a minimal blog engine using Vuex.
We'll cover the following...
Task
Modify the provided code to use Vuex, and follow the steps below:
Open the
src/store.js
file.Define state properties for
posts
(an array to hold posts) andpost
(to hold the current post). ...