Home  >  Article  >  Web Front-end  >  Detailed explanation of Vue syntax splicing strings

Detailed explanation of Vue syntax splicing strings

小云云
小云云Original
2018-01-22 10:04:332844browse

This article mainly introduces the sample code for splicing strings in Vue syntax. The editor thinks it is quite good. Now I will share it with you and give it as a reference. Let’s follow the editor to take a look, I hope it can help everyone.

Let’s start with a line of code:


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

As shown in the code, you only need to concatenate strings in the array syntax.

***Knowledge points***

By the way, let’s summarize the vue syntax

The writing method is also divided into: style Binding and class binding

(The following code part is an example from the official website)

(1)Object syntax

As the name suggests, there are objects to use The syntax of writing

style binding:

This type of writing is similar to css writing

class binding:

active is the class name, active is valid when isActive is true

(2) Array syntax

style binding:


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

data is not introduced on the judge website. I will briefly write an example here:


data: {
  style1:{background:&#39;red&#39;},
  style2:{width:&#39;100px&#39;},
  style3:{height:&#39;100px&#39;}
 }

class binding:

Related recommendations:

javascript: concatenating string function concat()

javascript - PHP splicing strings calling js

Comparative test on the efficiency of JavaScript combination splicing strings_javascript skills

The above is the detailed content of Detailed explanation of Vue syntax splicing strings. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn