1234567891011121314151617181920212223242526 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <script src="./js/vue.js"></script>
- </head>
- <body>
- <div id="app">
- <!-- <h1 v-if="num > 10">当前num大于10</h1>
- <h1 v-if="num < 10">当前num小于10</h1> -->
- <h1 v-if="num>10">num 大于 10</h1>
- <h1 v-else-if="num<10">num 小于 10</h1>
- <h1 v-else>num 等于 10</h1>
- </div>
- <script>
- let app = new Vue({
- el: '#app',
- data:{
- num:10
- }
- })
- </script>
- </body>
- </html>
|