I have a question:
How can i put a variable inside a interpolation?
For exemple:
<template>
<span>{{item.VARIABLE.name}}</span>
</template>
<script>
let VARIABLE = 'somenthing'
</script>
My "item.name" comes from a JSON and i need to put a variable in the middle.