# Server Side Rendering
If you want to do SSR, for example, with Nuxt.js, always fetch model from injected database instance.
export default {
computed: {
User () {
return this.$store.$db().model('users')
},
users () {
return this.User.all()
}
}
}
Other than that, Vuex ORM is just an Vuex wrapper. If you're able to do SSR with Vuex, you can do it with Vuex ORM as well.
← Serialization Plugins →