Skip to content

Instantly share code, notes, and snippets.

@naijab
Last active July 31, 2018 12:17
Show Gist options
  • Save naijab/26ba4205c2444423279270fba14d5d79 to your computer and use it in GitHub Desktop.
Save naijab/26ba4205c2444423279270fba14d5d79 to your computer and use it in GitHub Desktop.
Nuxt.js snippet
//nuxt.js loading process bar
this.$nextTick(() => {
this.$nuxt.$loading.start()
setTimeout(() => this.$nuxt.$loading.finish(), 500)
})

Dynamic Import

const MainMenu = () => import('@/components/MainMenu')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment