view client/src/stores/application.js @ 150:44a7e27a0816

Added missing translation for loginerror Loginerror is now translatable
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 02 Jul 2018 12:54:07 +0200
parents 88d0d60924cf
children e7d5383bc358
line wrap: on
line source

const Application = {
  namespaced: true,
  state: {
    appTitle: process.env.VUE_APP_TITLE,
    secondaryLogo: process.env.VUE_APP_SECONDARY_LOGO_URL
  },
  getters: {
    appTitle: state => {
      return state.appTitle;
    },
    secondaryLogo: state => {
      return state.secondaryLogo;
    }
  },
  mutations: {},
  actions: {}
};

export default Application;