User.ts 173 B

1234567
  1. import {Attr, Str, Model} from "@vuex-orm/core";
  2. export default class User extends Model {
  3. static entity = 'users'
  4. @Attr(1) id!: any
  5. @Str('John Doe') name!: string
  6. }