vue 第一天學習

chaofu發表於2019-08-21

vue 組 件的點選事件

@click.native.prevent="handleLogin" 看到 click.native.prevent 這個很奇怪,上網查到
給vue元件繫結事件時候,必須加上native ,不然不會生效(監聽根元素的原生事件,使用 .native 修飾符)
意思就是 vue元件繫結事件,必須加上native ,沒有就不生效 監聽根元素的原生事件,使用 .native 修飾符

路由跳轉

this.$router.push({ path: "/bind" })

彈出框

this.$message.error("登入名或者登入密碼不正確,無法登入");

this.$message("登入成功")

本作品採用《CC 協議》,轉載必須註明作者和本文連結