vue 中属性值上变量和字符串怎么拼接

在Vue 3中,可以使用模板字面量(template literals)或者表达式绑定(directives)来实现属性值上变量和字符串的拼接。

例如,假设你有一个变量text和一个字符串'hello',你可以这样拼接它们:

1.使用模板字面量(反引号...):

html 复制代码
<template>
  <div :attribute="`${text} hello`">Text</div>
</template>
 
<script setup>
import { ref } from 'vue';
const text = ref('World');
</script>

2.使用表达式绑定(使用v-bind指令):

html 复制代码
<template>
  <div v-bind:attribute="text + ' hello'">Text</div>
</template>
 
<script setup>
import { ref } from 'vue';
const text = ref('World');
</script>

在这两种情况下,attribute的值将会是拼接后的字符串,例如'World hello'

相关推荐
sunshine6413 分钟前
JS实现悬浮可拖拽vue组件封装
开发语言·前端·javascript
lichong95112 分钟前
《postman、apipost、smartApi 等使用与特点 3 天路线图(可打印 PDF+互动脑图)》
前端·测试工具·macos·pdf·postman·大前端·大前端++
怪我冷i14 分钟前
es6与es5的模块区别
前端·ecmascript·es6·ai写作
一 乐16 分钟前
助农服务系统|基于SprinBoot+vue的助农服务系统(源码+数据库+文档)
前端·数据库·vue.js
by__csdn18 分钟前
Vue 2 与 Vue 3:深度解析与对比
前端·javascript·vue.js·typescript·vue·css3·html5
s***353021 分钟前
怎么下载安装yarn
android·前端·后端
q***649721 分钟前
Spring boot整合quartz方法
java·前端·spring boot
行走的陀螺仪22 分钟前
Vue3远程加载阿里巴巴字体图标实时更新方案
前端·icon·字体图标·阿里巴巴图标库
0***h94223 分钟前
TypeScript 与后端开发Node.js
javascript·typescript·node.js
q***783724 分钟前
Spring Boot项目接收前端参数的11种方式
前端·spring boot·后端