1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <title>Vue Demo</title> <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script> </head> <body> <div id="app"> <h2>{{ message }}</h2>
<button @click="count++"> 点我:{{ count }} </button> </div>
<script> const { createApp } = Vue;
createApp({ data() { return { message: "你好,这是 Vue!", count: 0 }; } }).mount("#app"); </script> </body> </html>
|