123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>v-pre指令</title>
- <!-- 引入vue -->
- <script type="text/javascript" src="../js/vue.js"></script>
- </head>
- <body>
- <!--
- v-pre指令(没有值):
- 1、可以让Vue跳过其所在节点的编译过程。(也就是代码写的是啥样,页面呈现的就是啥样)
- 2、可利用它跳过:没有使用指令语法、没有使用插值语法的节点,会加快编译。
- -->
- <!-- 准备一个容器 -->
- <div id="root">
- <h2 v-pre>Vue其实有点简单</h2>
- <h2>当前的n值是:{{n}}</h2>
- <button @click="n++">点我n+1</button>
- </div>
- </body>
- <script>
- Vue.config.productionTip = false //阻止 vue 在启动时生成生产提示
-
- new Vue({
- el: '#root',
- data: {
- n:1
- }
- })
- </script>
- </html>
|