Cloudinary Vue SDK ========================= [](https://app.travis-ci.com/github/cloudinary/cloudinary-vue) ## About The Cloudinary Vue SDK allows you to quickly and eas
npm install cloudinary-vueCloudinary Vue SDK
=========================

bash
vue add cloudinary
`
- Set up your cloud name and pick the components to use (or use all đ)
!Set up with cloudName and options
- A cloudinary.js file will be added to your src directory, at the same level as your main.js file. Feel free to customize it if you like. And have fun with Cloudinary! đ¤
- For more information on the plugin, check out our Vue-CLI plugin for Cloudinary Repo.$3
`bash
npm install cloudinary-vue
yarn add cloudinary-vue
`
$3
For Nuxt.js projects, use Cloudinary module. You can set it up by using the following:
`
yarn add @nuxtjs/cloudinary
Or
npm i @nuxtjs/cloudinary
`Usage
$3
`javascript
import Vue from 'vue';
import Cloudinary, { CldImage, CldVideo, CldTransformation, CldContext } from "cloudinary-vue";Vue.use(Cloudinary, {
configuration: { cloudName: "demo" },
components: {
CldContext,
CldImage,
CldVideo,
CldTransformation,
}
});
`
You can also import the Cloudinary components manually in each of your components.$3
- See full documentation
`jsx
// Apply a single transformation
`
`jsx
// Chain (compose) multiple transformations
``