Skip to content
This repository was archived by the owner on May 2, 2020. It is now read-only.

Latest commit

 

History

History
58 lines (38 loc) · 1.39 KB

modules-and-scripts.md

File metadata and controls

58 lines (38 loc) · 1.39 KB

Modules and Scripts

This page is part of the App Framework Documentation


If available, you should prefer npm modules to keep your project folder lightweight.

NPM module

Follow these steps to install and use a module from the npm repository:

  1. Install module with npm install --save-dev <package_name>
  2. 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>

Local module

Follow these steps to use a local module (.js / .vue / .json):

  1. If not exists, create a folder vendor
  2. Save the module to vendor/<module_name>.<module_extension>
  3. 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.