wikijs-fork/client/store/page.js

31 lines
463 B
JavaScript
Raw Normal View History

2018-10-29 02:09:58 +00:00
import { make } from 'vuex-pathify'
const state = {
id: 0,
authorId: 0,
authorName: 'Unknown',
createdAt: '',
description: '',
isPublished: true,
locale: 'en',
path: '',
publishEndDate: '',
publishStartDate: '',
2018-10-29 02:09:58 +00:00
tags: [],
title: '',
updatedAt: '',
2020-05-17 22:38:23 +00:00
mode: '',
comments: {
view: false,
post: false,
manage: false
2020-05-18 04:45:51 +00:00
},
commentsCount: 0
2018-10-29 02:09:58 +00:00
}
export default {
namespaced: true,
state,
mutations: make.mutations(state)
}