Skip to content

Instantly share code, notes, and snippets.

@SidneyAllen
Last active October 29, 2021 18:10
Show Gist options
  • Save SidneyAllen/840cbbb2796ee0cd8c3ffe1957753923 to your computer and use it in GitHub Desktop.
Save SidneyAllen/840cbbb2796ee0cd8c3ffe1957753923 to your computer and use it in GitHub Desktop.
// src/components/Front.vue
function openUploadModal() {
window.cloudinary.openUploadWidget(
{
cloud_name: import.meta.env.VITE_CLOUDINARY_NAME,
upload_preset: import.meta.env.VITE_CLOUDINARY_PRESET
},
(error, result) => {
if (!error && result && result.event === "success") {
imgSrc.value = result.info.url
}
}).open();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment