index.hbs 185 B

1234567891011121314151617
  1. {{#if state}}
  2. const state = {}
  3. {{/if}}
  4. {{#if mutations}}
  5. const mutations = {}
  6. {{/if}}
  7. {{#if actions}}
  8. const actions = {}
  9. {{/if}}
  10. export default {
  11. namespaced: true,
  12. {{options}}
  13. }