feat: editor page properties

This commit is contained in:
NGPixel
2018-07-15 19:16:19 -04:00
parent fd8bf4dbff
commit 760939f808
11 changed files with 232 additions and 98 deletions

18
client/store/editor.js Normal file
View File

@@ -0,0 +1,18 @@
import { make } from 'vuex-pathify'
const state = {
title: '',
description: '',
tags: [],
path: '',
isPublished: true,
publishEtartDate: '',
publishEndDate: '',
locale: 'en'
}
export default {
namespaced: true,
state,
mutations: make.mutations(state)
}