Building in Production -> put to the Server

give an error: Vuex handler functions must not be anonymous.
Resolve:
npm cache clean --force
npm install
npm i npm@latest -g
This commit is contained in:
paolo
2018-12-22 23:30:02 +01:00
parent bd832d3f92
commit 02e5725ba9
6 changed files with 10 additions and 33 deletions

View File

@@ -1,4 +1,3 @@
import Api from '@api'
import { ISignupOptions, ISigninOptions, IUserState } from 'model'
import { ILinkReg, IResult, IIdToken } from 'model/other'
@@ -8,8 +7,6 @@ import router from '@router'
import { serv_constants } from '../Modules/serv_constants'
import { rescodes } from '../Modules/rescodes'
const bcrypt = require('bcryptjs')
@@ -34,15 +31,15 @@ const stateGetter = b.state()
namespace Getters {
const lang = b.read(function lang(state): string {
const lang = b.read(state => {
if (state.lang !== '') {
return state.lang
} else {
return process.env.LANG_DEFAULT
}
})
}, 'lang')
const tok = b.read(function tok(state): string {
const tok = b.read(state => {
if (state.tokens) {
if (typeof state.tokens[0] !== 'undefined') {
return state.tokens[0].token
@@ -52,7 +49,7 @@ namespace Getters {
} else {
return ''
}
})
}, 'tok')
export const getters = {
get lang() {