My original intention was to encapsulate the $notify notification of element-ui into a component. After successful login, call the low inventory interface. If the inventory in the list of the interface is greater than 0, display this notification and provide a click event in the text. Therefore, the first thing that comes to mind is to use the dangerouslyUseHTMLString attribute to insert an HTML string export default { methods: { open12() { this.$notify({ title: 'HTML snippet', dangerouslyUseHTMLString: true, message: '<strong>This is an <i id="show">HTML</i> snippet</strong>' }); } } } However, the HTML string in the message is actually separated from Vue. For example, the @click method cannot be used to bind the event. Therefore, it should be bound using js's DOM operation. First of all, I thought of getting it in the mounted method of the component document.querySelector('#show'); But what is obtained in this way is null, why? When mounted, the DOM in the component template is mounted. However, there is no template in my component. I only use this.$notify in the method. After mounting, the notify is not in the app. role="alert" is the notification box, so we cannot operate it as a normal component. Moreover, it may be mounted after the component is mounted, that is, when the mouted method is used, only the component is mounted, but the motify inside may not be there, so it is null. If you want to add js methods such as binding events, you should add listeners in html, but you have to grasp the timing. I still don’t use notify here, because notify should be a notification class that tends to display text, and it may be a bit inappropriate for me to use notify here. This is the end of this article about the key points of element $notify. For more information about element $notify, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Analysis of the use of the MySQL database show processlist command
>>: How to compile the Linux kernel
Meta declaration annotation steps: 1. Sort out all...
For historical reasons, MySQL replication is base...
Table of contents Preliminary preparation Deploym...
Detailed description of properties The purpose of...
Table of contents What is MySQL NDB Cluster Preli...
There are two types of Linux system time. (1) Cal...
1. Reason I just needed to reinstall MySQL on a n...
1. Install Tomcat 1. Find the tomcat image on Doc...
MySQL 5.7.27 detailed download, installation and ...
<br />In the past, creating a printer-friend...
This article shares the specific code of jQuery t...
Table of contents Object Object Definition Iterat...
Preface What is a slow query and how to optimize ...
Table of contents 1. Operator 1.1 Arithmetic oper...
Table of contents Introduction Download and insta...