5
Có cách nào thích hợp để đặt lại dữ liệu ban đầu của một thành phần trong vuejs không?
Tôi có một thành phần với một bộ dữ liệu bắt đầu cụ thể: data: function (){ return { modalBodyDisplay: 'getUserInput', // possible values: 'getUserInput', 'confirmGeocodedValue' submitButtonText: 'Lookup', // possible values 'Lookup', 'Yes' addressToConfirm: null, bestViewedByTheseBounds: null, location:{ name: null, address: null, position: null } } Đây là dữ liệu …
92
javascript
mvvm
vue.js