How to initialize the value of the form when switching pages with Vue.js?

switch the page and find that the data you filled in the form before is still there. How to refresh it? In the life cycle function to initialize?

Mar.20,2021

1. If element UI is used, el-form has a resetFields method;
2. Vue instance initialization data method: Object.assign (this.$data, this.$options.data.call (this)) ).

Menu