moduleA.js 163 B

1234567891011121314
  1. export default {
  2. state: {
  3. text:"我是moduleA模块下state.text的值"
  4. },
  5. getters: {
  6. },
  7. mutations: {
  8. },
  9. actions: {
  10. }
  11. }