wikijs-fork/client/store/editor.js
2018-07-15 19:16:19 -04:00

19 lines
277 B
JavaScript

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)
}