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