Vue-dä kömekçi metodlar
Beýleki metodlaryň içinde ulanylar ýaly
kömekçi metodlar hem etmek bolýar.
Şeýle metodlara hem this arkaly
ýüzlenmek gerek. Geliň, bir mysal
boýunça seredeliň. Bizde aşakdaky
metod bolsun:
show: function() {
alert(this.text);
}
Iberilen setiriň ilkinji harpyny baş harpa öwürýän kömekçi metod döreteliň:
cape: function(str) {
return str[0].toUpperCase() + str.slice(1);
}
Esasy metod içinde kömekçi metody ulanyň:
methods: {
show: function() {
let text = this.cape(this.text);
alert(text);
},
cape: function(str) {
return str[0].toUpperCase() + str.slice(1);
}
}
Parametri hökmünde san alyp, şol sana laýyk gelen hepde gününi yzyna gaytaryan kömekçi metod düzüň.
Häzirki hepde gününiň adyny ekrana çykaryan esasy metod düzüň.