Introduce the new Vue admin project into version control while tightening gitignore patterns to keep env files, logs, build artifacts, and test outputs out of commits. Made-with: Cursor
17 lines
185 B
Handlebars
Executable File
17 lines
185 B
Handlebars
Executable File
{{#if state}}
|
|
const state = {}
|
|
{{/if}}
|
|
|
|
{{#if mutations}}
|
|
const mutations = {}
|
|
{{/if}}
|
|
|
|
{{#if actions}}
|
|
const actions = {}
|
|
{{/if}}
|
|
|
|
export default {
|
|
namespaced: true,
|
|
{{options}}
|
|
}
|