<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div id="app"> <p>Good morning {{info}}</p> <p v-text="info">Good morning</p> <p v-html="info">Good morning</p> <hr> <p v-text="addr">hhh</p> <p v-html="addr">hhh</p> <hr> <p v-text="addr2">hhh</p> <p v-html="addr2">hhh</p> </div> </body> </html> <script src="js/vue.js"></script> <script> new Vue({ el:"#app", data:{ info:"good", addr:"<a href='https://www.baidu.com'>Click to enter Baidu</a>", addr2:'<a href="https://www.baidu.com" rel="external nofollow" >Baidu</a>' } }); </script> This is the end of this article about the differences and applications of {{}}, v-text and v-html in vue. For more relevant content about the differences and applications of {{}}, v-text and v-html in vue, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of building MySQL master-slave environment with Docker
>>: Solve the problem of Navicat importing database data structure sql reporting error datetime(0)
In MySQL, you can use IF(), IFNULL(), NULLIF(), a...
Copy code The code is as follows: <!--[if IE]&...
Step 1: Create a Django project Open the terminal...
Today I learned to install MySQL, and some proble...
Table of contents 1. Introduction to jQuery 2. jQ...
Preface When I went to an interview at a company ...
1. The difference between TEXT and BLOB The only ...
calc is a function in CSS that is used to calcula...
question Adding the type of uploaded file in acce...
When I was helping someone adjust the code today,...
Preface According to the project needs, Vue-touch...
Table of contents How to set cookies Disadvantage...
1. Compile proto Create a new proto folder under ...
Preface: This article only introduces the steps t...
Table of contents 1. Comparison with Vue2 1. New ...