The use of vue directive v-bind and points to note

The use of vue directive v-bind and points to note

1. v-bind: can bind some data to the attributes of the element

 <div id="app">

    <p v-bind:title="message" v-bind:id="pId">I am a p tag</p>

 </div>

<script src="./js/vue.js"></script>

          <script>

            let vm = new Vue({

                el:"#app",

                data:{

                    message: "I am the title value of the p tag",

                    pId: "This is a random ID"

                }

            })

The output is:

2. v-bind: can be abbreviated as: It is recommended to write the colon directly

<div id="app">

    <p :title="message" :id="pId">I am a p tag</p>

 </div>

<script src="./js/vue.js"></script>

          <script>

            let vm = new Vue({

                el:"#app",

                data:{

                    message: "I am the title value of the p tag",

                    pId: "This is a random ID"

                }

            })

The output is the same as above

3. v-bind: splicing of instruction expressions,

If you want to concatenate expressions, the concatenated strings must be wrapped in quotes, otherwise they will be parsed as variables.

Without quotes:

Error : [Vue warn]: Property or method "This is an additional id" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components, by initializing the property.

Add quotes:

<p title="200" :title="message" :id="pId+'This is the additional id'">I am the p tag</p>

Output:

This is the end of this article about the use of v-bind and the points to pay attention to. For more information about the use and points to pay attention to of v-bind, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of V-bind directive in VueJs
  • Detailed explanation of the basic usage of v-bind in VUE
  • Vue.js study notes v-bind and v-on analysis
  • Vue uses v-bind to assign values ​​to src and href

<<:  CSS style does not work (the most complete solution summary in history)

>>:  Example of customizing the style of the form file selection box

Recommend

Markup language - simplified tags

Click here to return to the 123WORDPRESS.COM HTML ...

7 Best VSCode Extensions for Vue Developers

Adding the right VS Code extension to Visual Stud...

Detailed steps for configuring virtual hosts in nginx

Virtual hosts use special software and hardware t...

Collection of 25 fonts used in famous website logos

This article collects the fonts used in the logos...

Detailed explanation of Vue filters

<body> <div id="root"> <...

Ubuntu Basic Tutorial: apt-get Command

Preface The apt-get command is a package manageme...

Detailed explanation of the minimum width value of inline-block in CSS

Preface Recently, I have been taking some time in...

Add ico mirror code to html (favicon.ico is placed in the root directory)

Code: Copy code The code is as follows: <!DOCTY...

A brief discussion on using virtual lists to optimize tables in el-table

Table of contents Preface Solution Specific imple...

Detailed instructions for installing mysql5.7 database under centos7.2

The mysql on the server is installed with version...

Summary of the use of special operators in MySql

Preface There are 4 types of operators in MySQL, ...

Alibaba Cloud Ubuntu 16.04 builds IPSec service

Introduction to IPSec IPSec (Internet Protocol Se...

Understanding and usage scenarios of ES6 extension operators

Table of contents 1. Replace the apply method, ge...