This page is part of the App Framework Documentation
If available, you should prefer npm modules to keep your project folder lightweight.
Follow these steps to install and use a module from the npm repository:
- Install module with
npm install --save-dev <package_name>
- Import module at the beginning of the script block with
import <var_name> from '<package_name>'
Example: npm install --save-dev underscore
<script>
import _ from 'underscore'
export default {
mounted: function () {
let numbers = [1, 4, 34, 145]
window.f7.alert('In my list are ' + _.size(numbers) + ' numbers!')
}
}
</script>
Follow these steps to use a local module (.js / .vue / .json):
- If not exists, create a folder vendor
- Save the module to vendor/<module_name>.<module_extension>
- Import the module at the beginning of the script block with
import <var_name> from '../../vendor/<module_name>'
Example: vendor/underscore.js
<script>
import _ from '../../vendor/underscore'
export default {
mounted: function () {
let numbers = [1, 4, 34, 145]
window.f7.alert('In my list are ' + _.size(numbers) + ' numbers!')
}
}
</script>
Because all scripts are compressed during the build process, you can prefer development versions.