# Vue 起手式 ###### tags: `Vue` 2022.2.28 開發者工具:https://chrome.google.com/webstore/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd/related ``` <!DOCTYPE html> <html lang="en"> <head> <title>Document</title> </head> <body> <script src="https://unpkg.com/vue@3"></script> <div id = "app"> {{counter}} <button type="button" v-on:click ="clickMe">按我</button> </div> <script> const app = { data(){ return{ counter:0, } }, created(){ this.counter = 10 }, methods:{ clickMe(){ this.counter +=1; } } } Vue.createApp(app).mount('#app') </script> </body> </html> ```
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up