import dialogs from "tns-core-modules/ui/dialogs";
export default {
methods: {
onButtonTap() {
console.log("Button was pressed");
prompt({
title: "Email Prompt",
message: "Provide your email address:",
okButtonText: "OK",
cancelButtonText: "Cancel",
defaultText: "name@domain.com",
inputType: dialogs.inputType.email
}).then(result => {
console.log(`Dialog result: ${result.result},
text: ${result.text}`);
});
}
},
}
Но Vetur выдает следующую ошибку Typescript.
Argument of type '{ title: string; message: string; okButtonText: string; cancelButtonText: string; defaultText: string; inputType: string; }' is not assignable to parameter of type 'string'.
Это просто пример кода в nativescript- vue документация подсказки , но адаптация машинописи.
Basi c использование
forgotPassword() {
prompt('Your message to the user', 'Suggested user input').then(result => {
console.log(`Dialog result: ${result.result}, text: ${result.text}`);
});
}
Ошибка Vetur:
Property 'then' does not exist on type 'string'.