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