vue 绑定 拼接字符串 电脑版发表于:2024/1/2 17:01 vue 绑定 拼接字符串方法1: ``` <iframe ref="iframe" v-loading.fullscreen.lock="fullscreenLoading" :src="`http://localhost:8888/${newSrc}`" class="iframe" /> ``` 也可以直接拼接: ``` :title="'字符串' + xx" ``` 直接拼接字符串: ``` <a :href="details.urlDetails+'?idtoken='+details.studentIdEncryption" target="_blank">{{ details.urlDetails }}</a> ```