wikijs-fork/client/store/editor.js
2018-07-15 22:40:41 -04:00

20 lines
295 B
JavaScript

import { make } from 'vuex-pathify'
const state = {
title: '',
description: '',
tags: [],
path: '',
isPublished: true,
publishStartDate: '',
publishEndDate: '',
locale: 'en',
mode: 'create'
}
export default {
namespaced: true,
state,
mutations: make.mutations(state)
}