当前位置:   article > 正文

支配vue框架模版语法之v-pre

vue中v-pre组件
  • ArthurSlog

  • SLog-21

  • Year·1

  • Guangzhou·China

  • July 21th 2018

微信扫描二维码,关注我的公众号

既然选择了浩瀚大海 那就注定要迎接风浪 既然选择了灿烂星辰 那就注定要拥抱深空


开发环境MacOS(High Sierra 10.13.5)

需要的信息和信息源:
  1. v-text

  2. v-html

  3. v-show

  4. v-if

  5. v-else

  6. v-else-if

  7. v-for

  8. v-on

  9. v-bind

  10. v-model

  11. v-pre

  12. v-cload

  13. v-once

  • vue.js 的模版指令,与编程语言的 “关键字” 或者 “保留字” 有点相似,例如 if(判断语句关键字)、for(循环语句关键字)

开始编码

  • 首先,搭起静态服务器,先切换至桌面路径

cd ~/Desktop

  • 创建一个文件夹node_vue_directive_learningload

mkdir node_vue_directive_learningload

  • 切换路径到新建的文件夹下

cd node_vue_directive_learningload

  • 使用npm初始化node环境,一路enter键完成初始化

npm init

  • 使用npm安装koa和koa-static

sudo npm install koa koa-static

index.js

  1. const serve = require('koa-static');
  2. const Koa = require('koa');
  3. const app = new Koa();
  4. // $ GET /package.json
  5. app.use(serve('.'));
  6. app.listen(3000);
  7. console.log('listening on port 3000');
  8. 复制代码

index.html

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>ArthurSlog</title>
  6. </head>
  7. <body>
  8. <h1>The static web server by ArthurSlog</h1>
  9. </body>
  10. </html>
  11. 复制代码
  • 接下来,我们来根据使用场景,来编写 vue.js 模版指令代码

v-pre.html

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <!-- 开发环境版本,包含了有帮助的命令行警告 -->
  6. <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
  7. <title>ArthurSlog</title>
  8. </head>
  9. <body>
  10. <div id="app">
  11. <span v-pre>{{msg}}</span>
  12. </div>
  13. <script>
  14. new Vue({
  15. el: '#app',
  16. data: {
  17. msg: 'this will not be compiled'
  18. }
  19. })
  20. </script>
  21. </body>
  22. </html>
  23. 复制代码
  • 打开浏览器,地址栏输入 127.0.0.1:3000/v-pre.html,显示
  1. {{msg}}
  2. 复制代码
  • v-pre 指令会跳过此元素及其所有子元素的编译,把标签里的数据都按普通文本解析

  • 至此,我们把 vue模版指令 v-pre 介绍了一遍,更多使用方法和信息,请参考 vue官方手册


欢迎关注我的微信公众号 ArthurSlog

微信扫描二维码,关注我的公众号

如果你喜欢我的文章 欢迎点赞 留言

谢谢

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/197661
推荐阅读
相关标签
  

闽ICP备14008679号