You can install Vuex ORM Axios via NPM, Yarn, or download it directly. This is a plugin for Vuex ORM, therefore you must ensure Vuex ORM and axios are installed.
npm install @vuex-orm/plugin-axios --save
yarn add @vuex-orm/plugin-axios
Unpkg.com provides NPM-based CDN links. Simply download and include with a script tag.
For development environments, testing and learning purposes, you can use the latest uncompressed version with:
<script src="https://unpkg.com/@vuex-orm/plugin-axios"></script>
For production, it's recommended to link to a specific version number and build to avoid unexpected breakage from newer versions:
<script src="https://unpkg.com/@vuex-orm/[email protected]/dist/vuex-orm-axios.min.js"></script>
See Release Notes for available versions.
If you are using native ES Modules, there is also an ESM compatible build:
<script type="module">
import VuexORMAxios from 'https://unpkg.com/@vuex-orm/plugin-axios/dist/vuex-orm-axios.esm.js'
</script>
In the dist/
directory of the NPM package you will find many different builds. Each of them have their use depending on your build environment and may help to reduce bundle sizes.
URL | |
---|---|
Development (uncompressed) | vuex-orm-axios.js |
Production (compressed) | vuex-orm-axios.min.js |
CommonJS | vuex-orm-axios.common.js |
ES Module | vuex-orm-axios.esm.js |
The built files in /dist
folder are only checked-in during releases. To use the latest source code on GitHub, you will have to run a build yourself.
# cd /path/to/project
git clone https://github.com/vuex-orm/plugin-axios.git node_modules/@vuex-orm/plugin-axios
cd node_modules/@vuex-orm/plugin-axios
yarn && yarn build