[Vuejs]-Vue x module Namespace

2👍

It will take name that you set up when imported module, try algo1

2👍

  1. Your module name is registered under algo1 name.
  2. If you want to call it Algo1Module then register it in the store like that:
modules: {
  Algo1Module: algo1,
}

Leave a comment