Cloudinary Blog

Uploading Vue Files and Rich Media in Two Easy Steps

Uploading Vue Files to Cloudinary

Vue.js, one of the most popular JavaScript front-end frameworks, is renowned for its simplicity and intuitiveness. Additionally, an active community ensures that plugins or packages, which you can quickly integrate with your app, are available for the Vue.js capabilities.

This article steers you through a painless setup process for Vue file upload's to Cloudinary. Follow the procedures below.

Set Up a Vue Project

The most straightforward way in which to quickly set up a Vue project is through Vue CLI.

First, install Vue CLI:

Copy to clipboard
npm install -g vue-cli

Second, create a Vue project:

Copy to clipboard
vue create upload

Now run the project:

Copy to clipboard
npm run serve

Set Up File Uploads

Step 1: Edit App.vue.

Edit the App.vue file, as follows:

1. Within the <template> tag, delete all the code except for the <img> and <HelloWorld> components.

2. Add an Upload files button:

Copy to clipboard
<div>
      <button @click="openUploadModal">Upload files</button>
</div>

@click=”openUploadModal means that clicking Upload files calls the openUploadModal function.

3. Add the openUploadModal function to the JavaScript section of the file:

Copy to clipboard
<script>
import HelloWorld from './components/HelloWorld.vue'

export default {
  name: 'App',
  components: {
    HelloWorld,
  },
  methods: {
    openUploadModal() {
     }
}
</script>

Step 2: Integrate With the Cloudinary Upload Widget.

Use the Cloudinary upload widget for Vue file uploads. Seamless to integrate, that widget also offers many other remarkable features, including transformation and delivery.

Do the following:

1. Open your public/index.html file and add the widget script to the <body> tag:

Copy to clipboard
<script src="https://widget.cloudinary.com/v2.0/global/all.js" type="text/javascript"></script>

2. In App.vue, populate the openUploadModal function with this code:

Copy to clipboard
  window.cloudinary.openUploadWidget(
        { cloud_name: '<your-cloud-name>',
          upload_preset: '<your-upload-preset>'
        },
        (error, result) => {
          if (!error && result && result.event === "success") {
            console.log('Done uploading..: ', result.info);          }
        }).open();

The code above calls the widget’s openUploadWidget function, invoking a robust upload modal and uploading the file.

Note: Obtain your cloud name and value for the upload preset from your Cloudinary account’s dashboard and settings page, respectively, for the values of your-cloud-name and your-upload-preset. Signing up for a Cloudinary account is a prerequisite.

presets Settings Page for Upload Presets

Now click Upload files for the upload widget:

Cloudinary Upload Widget Cloudinary Upload Widget

Open your browser’s DevTools so that you can watch the console during the upload: DevTools

The console returns all the information on the upload, including the URL. To display the image on your app, add a data variable to your JavaScript code in App.vue and assign the URL from the returned JSON response to the variable, as follows:

Copy to clipboard
<script>
import HelloWorld from './components/HelloWorld.vue'

export default {
  name: 'App',
  components: {
    HelloWorld,
  },
  data() {
    return {
      url: '',
    }
  },
  mounted() {

  },
  methods: {
    openUploadModal() {
      window.cloudinary.openUploadWidget(
        { cloud_name: 'unicodeveloper',
          upload_preset: 'b9ej8dr5'
        },
        (error, result) => {
          if (!error && result && result.event === "success") {
            console.log('Done uploading..: ', result.info);
            this.url = result.info.url;
          }
        }).open();
    }
  }
}
</script>

Finally, add the following to your template below the code for the **Upload files** button:

```html
....
.
.

<div>
        <img :src="url" />
</div>

Now upload again.

Vue File Upload

Yes! That’s a direct Vue file upload with no back-end setup, and pure vibes.

Other Enhancements

With Cloudinary’s upload widget, you can do a lot more than just uploading files. An entire suite of drop-in Vue UI components are available for cropping, transformation, video display, and numerous other tasks.

Why not try a few by sprinkling them in your codebase to enhance the display of your uploaded image? Follow these steps:

1. Install Cloudinary’s Vue SDK:

Copy to clipboard
npm install cloudinary-vue

2. Update App.vue to—

  • Import the components from the cloudinary-vue package.
  • Place the UI components in the template.
  • Add a publicId variable to the Vue data() function.
  • Assign the public_id value returned from Cloudinary’s JSON response to the data variable’s public ID (public_id).
Copy to clipboard
<template>
  <div id="app">
    <img alt="Vue logo" src="./assets/logo.png">
    <HelloWorld msg="Welcome to Your Vue.js File Upload App"/>

    <div>
      <button @click="openUploadModal">Upload files</button>
    </div>

    <div>
      <cld-context cloudName="<your-cloud-name>">
        <div style="display: flex; justify-content: center;">
          <cld-image :publicId="publicId" width="250" crop="scale" />
          <cld-image :publicId="publicId" width="300" crop="scale" />
          <cld-image :publicId="publicId" width="350" crop="scale" />
          <cld-image :publicId="publicId" width="400" crop="scale" />
          <cld-image :publicId="publicId" width="450" crop="scale" />
        </div>
      </cld-context>
    </div>
  </div>
</template>

<script>
import HelloWorld from './components/HelloWorld.vue'
import { CldContext, CldImage } from 'cloudinary-vue'

export default {
  name: 'App',
  components: {
    HelloWorld,
    CldContext,
    CldImage
  },
  data() {
    return {
      url: '',
      publicId: ''
    }
  },
  methods: {
    openUploadModal() {
      window.cloudinary.openUploadWidget(
        { cloud_name: '<your-cloud-name>',
          upload_preset: '<your-upload-preset>'
        },
        (error, result) => {
          if (!error && result && result.event === "success") {
            console.log('Done uploading..: ', result.info);
            this.url = result.info.url;
            this.publicId = result.info.public_id;
          }
        }).open();
    }
  }
}
</script>

<style>
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>

Now upload your files. Yaaaaay!

vue file upload

A Challenge for You

Here’s a challenge for you: take Vue file uploads to a more sophisticated level. Maybe start with the CldTransformation and CldPoster components.

The sky’s the limit as to how many amazing things you can do with Cloudinary to enhance your app’s media capabilities. Do start right away! You’ll be happy you did.

Want to Learn More About File Uploads?

Recent Blog Posts

Our $2B Valuation

By
Blackstone Growth Invests in Cloudinary

When we started our journey in 2012, we were looking to improve our lives as developers by making it easier for us to handle the arduous tasks of handling images and videos in our code. That initial line of developer code has evolved into a full suite of media experience solutions driven by a mission that gradually revealed itself over the course of the past 10 years: help companies unleash the full potential of their media to create the most engaging visual experiences.

Read more
Direct-to-Consumer E-Commerce Requires Compelling Visual Experiences

When brands like you adopt a direct–to-consumer (DTC) e-commerce approach with no involvement of retailers or marketplaces, you gain direct and timely insight into evolving shopping behaviors. Accordingly, you can accommodate shoppers’ preferences by continually adjusting your product offering and interspersing the shopping journey with moments of excitement and intrigue. Opportunities abound for you to cultivate engaging customer relationships.

Read more
Automatically Translating Videos for an International Audience

No matter your business focus—public service, B2B integration, recruitment—multimedia, in particular video, is remarkably effective in communicating with the audience. Before, making video accessible to diverse viewers involved tasks galore, such as eliciting the service of production studios to manually dub, transcribe, and add subtitles. Those operations were costly and slow, especially for globally destined content.

Read more
Cloudinary Helps Minted Manage Its Image-Generation Pipeline at Scale

Shoppers return time and again to Minted’s global online community of independent artists and designers because they know they can count on unique, statement-making products of the highest quality there. Concurrently, the visual imagery on Minted.com must do justice to the designs into which the creators have poured their hearts and souls. For Minted’s VP of Engineering David Lien, “Because we are a premium brand, we need to ensure that every single one of our product images matches the selected configuration exactly. For example, if you pick an 18x24 art print on blue canvas, we will show that exact combination on the hero images in the PDF.”

Read more
Highlights on ImageCon 2021 and a Preview of ImageCon 2022

New year, same trend! Visual media will continue to play a monumental role in driving online conversions. To keep up with visual-experience trends and best practices, Cloudinary holds an annual conference called ImageCon, a one-of-a-kind event that helps attendees create the most engaging visual experiences possible.

Read more