以下代码
《div id="app"》
《div》{{message | toUpcase}}《/div》
《/div》
《script》
var vm = new Vue({
el: '#app',
data: {
message: 'helloworld'
},
filters: {
// 将 helloworld 转换为 HELLOWORLD
toUpcase (value) {
return value ? value.toUpperCase() : ''
}
}
});
英文尖括号不能用以《》代替