赞
踩
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> [v-cloak]{ display: none; } </style> </head> <body> <div id="app"> <!-- v-pre指定这个范围不被vue作用 --> <div v-pre> <!-- 这内部不要在使用vue的任何指令 --> <p :title="message">{{message}}</p> </div> <div v-cloak> <!-- 防止在vue不作用时,{{}}出现闪烁 --> <h1 v-text="message"></h1> <h1>{{message}}</h1> </div> <h1 v-text="message"></h1> <h1>{{message}}</h1> <!-- 只解析一次 --> <div v-once> <h1 v-text="message"></h1> </div> </div> <script src="./vue.js"></script> <script> const app = new Vue({ el: '#app', data: { message: 'hello' }, methods: { } }) </script> </body> </html>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。