2018-07-15 23:16:19 +00:00
|
|
|
import { make } from 'vuex-pathify'
|
|
|
|
|
|
|
|
const state = {
|
2018-07-23 01:13:01 +00:00
|
|
|
id: 0,
|
2018-07-22 20:25:39 +00:00
|
|
|
content: '',
|
2018-07-15 23:16:19 +00:00
|
|
|
description: '',
|
|
|
|
isPublished: true,
|
2018-07-16 02:40:41 +00:00
|
|
|
locale: 'en',
|
2018-07-22 20:25:39 +00:00
|
|
|
mode: 'create',
|
|
|
|
path: '',
|
|
|
|
publishEndDate: '',
|
|
|
|
publishStartDate: '',
|
|
|
|
tags: [],
|
|
|
|
title: ''
|
2018-07-15 23:16:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
namespaced: true,
|
|
|
|
state,
|
|
|
|
mutations: make.mutations(state)
|
|
|
|
}
|