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