Country.ts 185 B

1234567891011
  1. import {Str, Model, Uid} from '@vuex-orm/core'
  2. export class Country extends Model {
  3. static entity = 'countries'
  4. @Uid()
  5. id!: number | string | null
  6. @Str('')
  7. name!: string
  8. }