0๐
I would go with Dynamic Imports. Webpack will create separate files for such imports by default. In runtime those files are asynchronously loaded. Webpack
transforms import()
calls to Promises so you can use await/async as well.
- [Vuejs]-How to commit multiple nested values that are supposed to be in the same Vuex Store object and that are not mapped to the store object?
- [Vuejs]-Vue components not showing in a different blade
Source:stackexchange.com