Organization.ts 218 B

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