No need a name for exported method

This commit is contained in:
Sebastien Chopin 2017-05-22 14:26:24 +02:00
parent 9098854a30
commit b2ef8c320f

View File

@ -50,7 +50,7 @@ function getModule (filename) {
const file = files(filename)
const module = file.default || file
if (module.commit) {
throw new Error('[nuxt] store/' + filename.replace('./', '') + ' should export a `createStore` method which returns a Vuex instance.')
throw new Error('[nuxt] store/' + filename.replace('./', '') + ' should export a method which returns a Vuex instance.')
}
if (module.state && typeof module.state !== 'function') {
throw new Error('[nuxt] state should be a function in store/' + filename.replace('./', ''))