Skip to content

Instantly share code, notes, and snippets.

@sirramongabriel
Created February 26, 2019 17:57
Show Gist options
  • Save sirramongabriel/b1e76fad6f2dc9561cf31bed8ed38b82 to your computer and use it in GitHub Desktop.
Save sirramongabriel/b1e76fad6f2dc9561cf31bed8ed38b82 to your computer and use it in GitHub Desktop.
The model
// UserLogin Model
import { Model } from '@vuex-orm/core';
export default class UserLogin extends Model {
static entity = 'user_logins'
static fields() {
return {
email: this.attr('test@example.com'),
password: this.attr('123456'),
test_message: 'Happy days!'
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment