Skip to content

Instantly share code, notes, and snippets.

@calebklc
Last active March 22, 2017 11:42
Show Gist options
  • Save calebklc/21fd7aebb1e7205b4be412e7ae3875e7 to your computer and use it in GitHub Desktop.
Save calebklc/21fd7aebb1e7205b4be412e7ae3875e7 to your computer and use it in GitHub Desktop.
Vue.js notes

Lazy loading component

  const Component = resolve => {
    require.ensure(['./components/Component.vue'], () => {
      resolve(require('./components/Component.vue'));
    });
  }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment