码迷,mamicode.com
首页 > 其他好文 > 详细

vue语法之拼接字符串

时间:2017-08-25 10:58:51      阅读:362      评论:0      收藏:0      [点我收藏+]

标签:span   技术   pre   技术分享   url   wip   red   先来   bsp   

先来一行代码:

<div class="swiper-slide" v-for="item in message">
  <img v-bind:src="[‘xxx(需要拼接的字符串)‘+item.picurl]" alt="" width="100%" height="245" />
</div>

如代码所示,只需要在数组语法中拼接字符串即可。

 

***知识点***

顺便总结一下vue语法

写法也分为:style的绑定和class的绑定

(以下代码部分为官网例子)

(1)对象语法

顾名思义,就是有使用对象写法的语法

style绑定:

技术分享

这类写法和css写法类似

class绑定:

技术分享

active是类名,isActive为true的时候active有效

(2)数组语法

style绑定:

<div :style="[style1,style2,style3]"></div>

data写法官网没介绍,我这边简单写一下例子:

data: {
    style1:{background:‘red‘},
    style2:{width:‘100px‘},
    style3:{height:‘100px‘}
  }

class绑定:

技术分享

 

vue语法之拼接字符串

标签:span   技术   pre   技术分享   url   wip   red   先来   bsp   

原文地址:http://www.cnblogs.com/LucklyPisces/p/7426541.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!