Zachary

Results 32 comments of Zachary

Change your event function to: changeStyle: function (event) { this.effect = event.target.value; var cloudinary = document.getElementById("imgPic"); console.log("this.effect", this.effect); console.log("cloud", cloudinary); },

You have that value hard coded, ` _this.effect = "art:incognito";`

Reference this sandbox https://codesandbox.io/s/lively-wood-cerp8d?file=/src/App.vue

What current issues are you still needing help with?

https://codesandbox.io/s/vue-effect-changes-cerp8d Here yah go

Remember to set the effect before you load the image.

The example works. Not sure what you're missing. Feel free to share your updated code and I can take a look.

Hey there, looks like you're missing your API key, look at this complete fetch example. var formdata = new FormData(); formdata.append("file", fileInput.files[0], "[PROXY]"); formdata.append("upload_preset", ""); formdata.append("public_id", ""); formdata.append("api_key", "{{Username}}"); var...