Vue page local refresh problem

in a background management project, after the data modification in the list is submitted, the this.reload () method is called to refresh the modified table, but the side navigation bar is also refreshed at the same time, so how to control only the list to be refreshed instead of the entire page

Nov.10,2021

there is no ready-made local refresh method.

if you want to refresh a local page, you can assign values (operations) to the page data, so as not to achieve the effect of page refresh

Local refresh?
you can refresh the data by changing the list. Vue is responsive


after the data in the list is modified and submitted, you don't need to reload, again, you just need to re-assign values to the list data.

Menu