字符串内如何直接使用变量或属性?
<template>
<div :class="`div_${text}`">
</div>
</template>
<script>
export default {
props:{
text:{
type: String
default: ''
}
},
data(){
return {
aaa: ''
}
}
}
</script>