vue-模板

模板:

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)}}

原创笔记
原文地址:https://www.cnblogs.com/minty/p/7077033.html