UNPKG

vuexorm-softdelete-plugin

Version:

Vuex ORM plugin adding soft delete capability. Based on an original idea from Conan Crawford.

15 lines (11 loc) 282 B
import { Model } from '@vuex-orm/core'; export default class Role extends Model { static entity = 'roles'; static primaryKey = 'id'; static fields() { return { id: this.increment(), name: this.attr('') }; } }