# Vuex ORM
Vuex ORM is a plugin for Vuex to enable Object-Relational Mapping access to the Vuex Store. Vuex ORM lets you create "normalized" data schema within Vuex Store with relationships such as "Has One" and "Belongs To Many" like any other usual ORM library. It also provides fluent API to get, search and update Store state.
Vuex ORM is heavily inspired by Redux recipe of "Normalizing State Shape" and "Updating Normalized Data". Learn more about the concept and motivation of Vuex ORM at What is Vuex ORM?.
# Sponsors
Vuex ORM is sponsored by awesome folks. Big love to all of them from the whole Vuex ORM community π
# Super Love Sponsors
# Big Love Sponsors
# A Love Sponsors
# Table of Contents
- Prologue
- Model
- Data
- Digging Deeper
- API Reference
# Questions & Discussions
Join us on our Slack Channel for any questions and discussions.
Although there is the Slack Channel, do not hesitate to open an issue for any question you might have. We're always more than happy to hear any feedback, and we don't care what kind of form they are.
# Examples
You can find example applications built using Vuex ORM at;
- Vuex ORM Examples β Simple ToDo App built on top of a plain Vue structure generated by Vue CLI.
- Vuex ORM Examples Nuxt β Simple ToDo App built on top of Nuxt.js.
# Plugins
Vuex ORM can be extended via plugins to add additional features. Here is a list of available plugins.
- Vuex ORM Axios β The plugin to sync the store against a RESTful API.
- Vuex ORM GraphQL β The plugin to sync the store against a GraphQL API.
- Vuex ORM Search β The plugin adds a search() method to filter records using fuzzy search logic from the Fuse.js.
- Vuex ORM Change Flags - Vuex ORM plugin for adding IsDirty / IsNew flags to model entities.
- Vuex ORM Soft Delete β Vuex ORM plugin for adding soft delete feature to model entities.
You can find a list of awesome things related to Vuex ORM at Awesome Vuex ORM.