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';