[Vuejs]-VuexORM hasMany/belongsTo relationship returns null

1👍

You need to tell VuexORM to load the relation in the first place using:

Book.query().with("author").first()

See the relationships documentation on VuexORM: https://vuex-orm.org/guide/data/retrieving.html#relationships

Leave a comment