拼接数据,中间用某个符号串起来

  • 比如,我们在vue中,需要把年月日的三个数据用 / 符号拼接在一起,这时候我们需要用模板字符串来解决,代码如下:
    如果中间不需要符号 / , 也可以写文字,数字等
<template>
	<div>
			<!-- 调用fun函数 -->
		<p>{{fun}}</p>
		<!-- 输出结果为  2022/03/15 -->
	</div>
</template>
<script>
	export default {
		data(){
			return{
				year:'2022',//年
				mouth:'03',//月
				day:'15',//日
				ytd:'',
			}
		},
		computed:{
			fun(){
				// 拼接
				this.tyd=`${this.year}/${this.mouth}/${this.day}`;
				// this.tyd=`${this.year}年${this.mouth}月${this.day}日`;
				return this.tyd;
			}
			
		},
		
	}
</script>
<style>
</style>

Logo

前往低代码交流专区

更多推荐