Skip to content

Instantly share code, notes, and snippets.

@PKTseng
Created August 4, 2020 10:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PKTseng/c2579af544876c82c1efee64111d10f3 to your computer and use it in GitHub Desktop.
Save PKTseng/c2579af544876c82c1efee64111d10f3 to your computer and use it in GitHub Desktop.
修飾符
<div id="app">
<a
href="https://www.google.com/"
target="_blank"
@click="linkClick"
>
google
</a>
</div>
new Vue({
el:"#app",
data:{
},
methods:{
linkClick(){
alert("不開新頁面")
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment