Min's blog

I choose to see the beauties in the world.

导航

vue-模板

Posted on 2017-06-25 16:03  Min77  阅读(158)  评论(0编辑  收藏  举报

模板:

1. 数据更新模板变化  {{msg}}

2.数据绑定一次  <span v-once>This will never change: {{ msg }}</span>

3. html转译输出  <div v-html="msg"></div>

 

过滤器

1. 大写:{{msg.toUpperCase()}}

2.小写  text.toLowerCase()

3.首字母大写:text[0].toUpperCase() + text.slice(1)

4.货币过滤器: {{'$' + msg.toFixed(2)}}