Country.ts 184 B

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