🐞 Fix a bug with `Model.getFromStore` when also passing params
This release fixes a bug with the Model.getFromStore
method when multiple arguments were provided, as shown here:
import { models } from 'feathers-vuex'
const { Todo } = models.api
const $populateParams = { name: 'org' }
Todo.getFromStore(1, { $populateParams })
When doing a query with the above, the arguments would be passed as an array to the get
getter, which would cause it to return nothing. This update makes sure you can use the above syntax and still get a result back from the store.