Vue.Js Trim String JavaScript Example
new Vue({
el: '#app',
data: function() {
return {
text: ' This is string having space at both side. '
}
},
filters: {
trim: function(string) {
return string.trim()
}
}
});
//Usage
{{ text | trim }}
+ Date: Mon 23 Mar 2020 | Time: | By: Javad Nasrollahi
|