大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
问题
在通辽等地区,都构建了全面的区域性战略布局,加强发展的系统性、市场前瞻性、产品创新能力,以专注、极致的服务理念,为客户提供网站制作、成都网站制作 网站设计制作定制网站建设,公司网站建设,企业网站建设,成都品牌网站建设,营销型网站建设,外贸网站制作,通辽网站建设费用合理。
2.0 filters only work in mustache tags and v-bind.
Vue2.0 不再支持在 v-html 中使用过滤器,比如在 1.0 中是这样使用的:
{{{ option.title | highlight }}}
然而,现在不能使用了,Vue2.0 的过滤器现在只能应用在 {{ }} 和 v-bind 中。
然而,嫌麻烦,还想使用怎么办?
解决方法
使用全局方法
put your highlight into methods, and v-html="highlight(option.title)"
可以在 Vue 上定义全局方法:
Vue.prototype.highlight= function (sTitle) { // to do };
然后所有组件上都可以直接用这个方法了:
v-html="highlight(option.title)"
使用 computed 属性
当然,可以使用计算属性 computed,返回原生 html 给 v-html 即可。
使用 $options.filters
You can use $options.filters
v-html="$options.filters.highlight(option.title)".
这个方式在文档中并没有说明,但是这也是可靠的方法。
You can safely rely on that: $options are the options passed to the Vue constructor when creating a vm (so any component or new Vue). From that point on is just javascript
以上就是本次介绍的关于vue指令v-html使用的全部知识点,感谢大家的阅读和对创新互联的支持。