Nuxt/examples/middleware/store/index.js
Sébastien Chopin 17650c25e0 Middleware feature 🔥
2017-02-03 15:09:38 +01:00

13 lines
175 B
JavaScript

export const state = {
visits: []
}
export const mutations = {
ADD_VISIT (state, path) {
state.visits.push({
path,
date: new Date().toJSON()
})
}
}