Using Vue Material components I want concatenate a text with a variable's value to make the md-content text.
<md-dialog-confirm
:md-active.sync="showDialogConfirmDelete"
md-title="Deletar Fornecedor"
md-content="Concate this with {{fornecedorToDelete.nome}}"
></md-dialog-confirm>
...
data() {
return { fornecedorToDelete: {nome: "Name"} }
}
but it doesn't works, the md-content's value is not set.