This message is displayed on the app page after the app has been updated.
- - +onMounted(async () => { + const savedData = kintone.plugin.app.getConfig(props.pluginId); + data.message = JSON.parse(savedData.message); +}); +function save() { + kintone.plugin.app.setConfig( + { message: JSON.stringify(data.message) }, + // () => { + // alert("The plug-in settings have been saved. Please update the app!"); + // window.location.href = "../../flow?app=" + kintone.app.getId(); + // } + ); +} + +function cancel() { + window.location.href = `../../${kintone.app.getId()}/plugin/`; +} +