import {Attr, Str} from '@vuex-orm/core' import {Model} from '@/models/Model' export class Country extends Model{ static entity = 'countries' @Attr(null) id!: number | null @Str('') name!: string }