我正在将 VSCode 与 Vetur 一起使用。这是我的代码:
alert({
title: 'Success!',
message: 'Account created successfully',
okButtonText: 'Okay'
}).then(() => {
console.log('Alert dialog closed!');
})
我得到错误Property 'then' does not exist on type 'void' Vetur(2339)
我只是按照文档中的说明进行操作:https ://nativescript-vue.org/en/docs/elements/dialogs/alert/
知道发生了什么吗?