1. v-text text rendering instructions
<div id="test"> <p v-text="message"></p> </div> <script src="./js/vue.js"></script> <script> const vm = new Vue({ el:"#test", data:{ message:"<h2>hello vue</h2>" } }) </script> The output is: 2. v-html
<div id="test"> <p v-html="message"></p> </div> <script src="./js/vue.js"></script> <script> const vm = new Vue({ el:"#test", data:{ message:"<h2>hello vue</h2>" } }) </script> The output is: This is the end of this article about the Vue directives v-html and v-text. For more related v-html and v-text content, 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 the difference between device-width and width in CSS3 media queries
>>: Use js in html to get the local system time
Of course, there are many people who hold the oppo...
Background-image is probably one of those CSS pro...
This article explains the difference between arro...
This article mainly introduces the method of CSS ...
1.1 Copy the nginx installation package and insta...
Object.defineProperty Understanding grammar: Obje...
This article example shares the specific code of ...
(1) Reduce HTTP requests. (Merge resource files a...
1. W3C versions of flex 2009 version Flag: displa...
1. Let's look at a table creation statement f...
1. Multiple borders[1] Background: box-shadow, ou...
Recently, I encountered a problem of whether the d...
1. Understanding of transition attributes 1. The ...
This article shares the specific code for JavaScr...
Table of contents Scenario Try to solve solve Sce...