字符串内如何直接使用变量或属性?

<template>
      <div :class="`div_${text}`">
      </div>
</template>
<script>
export default {
      props:{
            text:{
                  type: String
                  default: ''
            }
      },
      data(){
            return {
                  aaa: ''
            }
      }
}
</script>
原文地址:https://www.cnblogs.com/zhenhunfan2/p/13877977.html