UNPKG

@dakingindanorf/hive

Version:

A template for creating a nuxt generated static site using Netlify CMS to power the backend. Individual site components can be managed through Bit

24 lines (19 loc) 269 B
const state = () => ({ pages: [] }) const getters = { pages: state => state.pages } const mutations = { setPages(state, list) { state.pages = list } } const actions = { } export default { state, getters, mutations, actions }