You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm still have a problem uploading image from file system. Image upload function didn't run in my component and also there is no console error. I choose a file and fill out link value to unlock Apply button.
This is my component. I did not install plugin globally.
<scriptsetup>
import {ref} from "vue";
import {VuetifyTiptap} from "vuetify-pro-tiptap";
import "vuetify-pro-tiptap/style.css";
import {BaseKit,Image} from "vuetify-pro-tiptap";
const extensions = [
BaseKit.configure({placeholder: {placeholder: "Write some text...",},}),
Image.configure({upload(file){console.log(file);},
}),];constcontent=ref("");</script><template><div><VuetifyTiptapv-model="content"
:min-height="200"
:max-height="465"
:max-width="900"
:extensions="extensions"/></div></template>
The text was updated successfully, but these errors were encountered:
I'm still have a problem uploading image from file system. Image upload function didn't run in my component and also there is no console error. I choose a file and fill out link value to unlock Apply button.
This is my component. I did not install plugin globally.
The text was updated successfully, but these errors were encountered: