If you have to extend an existing object with additional property, always prefer Vue.set() over Object.assign() (or spread operator).
Example below explains implications for different implementations.
| #!/usr/bin bash | |
| # DEFINE THE BLOATWARE APPLICATIONS WHICH | |
| # ARE SAFE TO BE REMOVED | |
| declare -a bloatware=( | |
| # Google Bloatware | |
| "com.google.android.apps.docs" # Google Docs | |
| "com.google.android.apps.maps" # Google Maps | |
| "com.google.android.apps.photos" # Google Photos | |
| "com.google.android.apps.tachyon" # Google Duo |