import { Attr, Str, Model } from '@vuex-orm/core' export default class Organization extends Model { static entity = 'organizations' @Attr(1) id!: any @Str('Cluses') name!: string }