I create a User model using vuex-orm and I want to access to its property email.
but the ide/typescript doesn't fill the properties.
vuex-orm is supported with typescript typo.
When I try to access using JavaScript I able to execute this code and get the value.
const email = allUsers[0].email;
