[Vuejs]-Is there a way to remove the "Add Image" button of AssetManager of grapesjs editor in a vue component

0๐Ÿ‘

โœ…

I have hidden the "Add Image" button and its path URL textbox using css styling.

.gjs-am-add-asset .gjs-am-add-field{
    visibility: hidden;
}

.gjs-am-add-asset button {
    visibility: hidden;
}

And imported the css into the vue component.

import './style.css'; 

Upload Image

Leave a comment