A brief discussion on the $notify points of element

A brief discussion on the $notify points of element

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:
  • Solution to ElementUI's this.$notify.close() call not working
  • Vue solves the problem of line breaks in prompt information using $notify in element

<<:  Analysis of the use of the MySQL database show processlist command

>>:  How to compile the Linux kernel

Recommend

Meta declaration annotation steps

Meta declaration annotation steps: 1. Sort out all...

Causes and solutions for MySQL master-slave synchronization delay

For historical reasons, MySQL replication is base...

Automated front-end deployment based on Docker, Nginx and Jenkins

Table of contents Preliminary preparation Deploym...

CSS3 uses the transition property to achieve transition effects

Detailed description of properties The purpose of...

How to build a MySQL high-availability and high-performance cluster

Table of contents What is MySQL NDB Cluster Preli...

How to obtain and use time in Linux system

There are two types of Linux system time. (1) Cal...

MySQL Installer 8.0.21 installation tutorial with pictures and text

1. Reason I just needed to reinstall MySQL on a n...

Briefly describe how to install Tomcat image and deploy web project in Docker

1. Install Tomcat 1. Find the tomcat image on Doc...

MySQL 5.7.27 installation and configuration method graphic tutorial

MySQL 5.7.27 detailed download, installation and ...

Convert XHTML CSS pages to printer pages

<br />In the past, creating a printer-friend...

jQuery simulates picker to achieve sliding selection effect

This article shares the specific code of jQuery t...

JavaScript object built-in objects, value types and reference types explained

Table of contents Object Object Definition Iterat...

MySQL slow query and query reconstruction method record

Preface What is a slow query and how to optimize ...

Javascript Basics: Detailed Explanation of Operators and Flow Control

Table of contents 1. Operator 1.1 Arithmetic oper...

Detailed tutorial on installing Docker and docker-compose suite on Windows

Table of contents Introduction Download and insta...