UNPKG

quasar-app-extension-ap-input

Version:
17 lines 302 B
export default { data(){ return{ text:"" } }, methods:{ enviarNome(){ if(this.text===""){ alert("Preencha o campo") }else{ alert(`Seu nome é: ${this.text}`) this.text="" } } } }