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