const modalViewModule = "ns-ui-category/modal-view/basics/modal-view-page";
//code in the middle
function openModal(args) {
const mainView = args.object;
const option = {
context: { title: "...", description: "..." },
closeCallback: (title, description) => {
// Receive data from the modal view. e.g. username & password
alert(`Title: ${title} : Description: ${description}`);
},
fullscreen: true
};
mainView.showModal(modalViewModule, option);
}
exports.openModal = openModal;
Когда я пытаюсь использовать этот модуль, он говорит: Не удалось загрузить компонент из модуля