Country.ts 211 B

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