vuex-orm / vuex-orm-next

The next iteration of Vuex ORM.
https://next.vuex-orm.org
MIT License
189 stars 11 forks source link

Creating a models collection #118

Open mrFANRA opened 2 years ago

mrFANRA commented 2 years ago

Hi!

Can your please add support array of objects for make function?

const users = store.$repo(User).make([{
  name: 'John Doe',
  age: 30
},{
  name: 'John Walker',
  age: 36
}]);