Skip to content
Snippets Groups Projects
Commit 06d44d21 authored by Martin Claesson's avatar Martin Claesson
Browse files

fix(client): state shouldn't have a property with the same name as a module

parent 429e10dd
Branches
Tags
1 merge request!34fix(client): #41 Fix ValueComponent only showing total
import {Interfaces} from "@alboneon/library/types/Interfaces";
export const state = () => ({
party:<Interfaces.Party>{}
})
export type RootState = ReturnType<typeof state>
export const state = () => {}
export type RootState = {party:Interfaces.Party}
export const getters = {}
export const mutations = {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment