Skip to content

Instantly share code, notes, and snippets.

@tamanyan
Last active August 21, 2019 10:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tamanyan/02242482940cf93cddc0c2f5a3150b5d to your computer and use it in GitHub Desktop.
Save tamanyan/02242482940cf93cddc0c2f5a3150b5d to your computer and use it in GitHub Desktop.
Style Guide
Good
const AppHeader = () => import('~/components/AppHeader.vue')
const AppFooter = () => import('~/components/AppFooter.vue')

Bad
import AppHeader from '~/components/AppHeader.vue'
import AppFooter from '~/components/AppFooter.vue'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment