Home>Article>Web Front-end> How to monitor Vue slot changes? Try this trick!
How to monitor the slot changes ofVue? The following article will introduce you to the method of monitoring Vue slot changes. I hope it will be helpful to you!
Lately, I need to update the state of a component whenever its content (slots, subcomponents, etc.) changes. For context, it's a form component that keeps track of the validity status of its inputs.
The code snippet below is written inOptions
API format, but can be used in both Vue2 and Vue2 except where specified. [Related recommendations:vuejs video tutorial]
Start by controlling the form state, modify a class according to the state, and use child content38b537b6886351ac721d89624ba185ca
Filling:
In order to update theisInvalid
property, we need to add a triggered event, you can use thesumit
event, But I prefer to use theinput
event.
There are 7 form events: focus, blur, input, select, change, reset, submit, etc. For details, please read this article:https://blog.csdn.net/qq_4379 ...
The form will not trigger theinput
event, but we can use"Event Delegate". We attach the listener to the parent element (ff9c23ada1bcecdd1a0fb5d5a0f18437
) and when the event occurs on its child elements (d5fd7aea971a85678ba271703566ebfd
,221f08282418e2996498697df914ce4e
,4750256ae76b6b9d804861d8f69e79d3
, etc.) will be triggered.
Anytime aninput
event is triggered in this component's58cb293b8600657fad49ec2c8d37b472
, the form will capture the event.
Validation logic can be simple or complex. For demonstration purposes, this article uses a simple method to useform.checkValidity()
API to check whether the form is valid based on HTML validation attributes.
In order to access theff9c23ada1bcecdd1a0fb5d5a0f18437
element. You can userefs
or$el
attributes. For simplicity, this article uses$el
.
There is a little problem here. What happens if the content of the form changes? What happens if and5fd7aea971a85678ba271703566ebfd
is added to the DOM when the form loads?
For example, we call this form component"MyForm"
. In App, the content is as follows:
// App.vue
WhenApp.vue
Hide and display certaininput
through conditions, our form needs to know. In this case, we would think of tracking the validity of the form content when it changes, not just on theinput
event or themounted
lifecycle hook. Otherwise, incorrect information may be displayed.
Friends who are familiar with Vue’s life cycle hooks may think of usingupdate
to track changes. In theory, this sounds great. In practice, it creates an infinite loop and the browser hangs.
After some research and testing, the best solution is to use theMutationObserver
API. It is a built-in method of the browser that provides the ability to monitor changes to the DOM tree. This API can be notified if nodes are added or removed, attributes change, or text content changes.
It is a native method, so it is not limited to the framework.
When using it, first use theMutationObserver
constructor to create a new observer instance and specify the callback function of this instance. Called after every DOM change, this callback is called. The callback function accepts two parameters, the first is the change array, and the second is the observer instance. Rewrite ourform
component as follows:
You also need to use # here. ##beforeUnmountlife cycle event to disconnect
observer, which will clear any memory allocated by it.
isInvalidstatus to the plugin slot of the content we want to access. This is also called the scope's slot and is very useful.
With this setup, we can add any number of
inputto our form component and add any conditional rendering logic it needs. As long as
inputuses the HTML validation attribute, the form will keep track of whether it is in a valid state.
App.vue, we want to "disable" the submit button when the form is invalid, we can write like this
nice~. Hope this article can be helpful to your future development.
(Learning video sharing:web front-end development,Basic programming video)
The above is the detailed content of How to monitor Vue slot changes? Try this trick!. For more information, please follow other related articles on the PHP Chinese website!