i have this code:
data: {
cols: ['nome', 'data', 'size', 'ext'],
items: []
},
I would need to turn the text into uppercase. I tried this way, following the examples of the official site:
<th v-for="col in cols">
{{col | uppercase}}
</th>
However, the text remains in lowercase. do you know why??
{{col.toUpperCase()}}
`. – Horai Nuri Jun 12 '17 at 07:29