我試圖做一些數據轉換爲小寫(送花兒給人小寫)Vuejs 2:如何使數據小寫
我製作和搜索輸入,如:
<template id="search">
<div>
<input type="text" v-model="search">
<li v-show="'hello'.includes(search) && search !== ''">Hello</li>
</div>
</template>
Vuejs:(組件)
Vue.component('search', {
template : '#search',
data: function(){return{
search : '',
}}
});
我試過watch
,但我不想輸入顯示小寫輸入
watch: {
'search' : function(v) {
this.search = v.toLowerCase().trim();
}
}
演示時:https://jsfiddle.net/rgr2vnjp/
而且我不想搜索列表v-show
像添加.toLowerCase()
:
<li v-show="'hello'.includes(search.toLowerCase()) && search !== ''">Hello</li>
任何詭計?,我搜索,許多人告訴只是使用上Vuejs filter
但不退出2
遊樂場:https://jsfiddle.net/zufo5mhq/(嘗試鍵入^h)
PS:好/更好的代碼,我想也知道,由於
Ahaaa!非常感謝 – l2aelba