Skip to content

Instantly share code, notes, and snippets.

@harryWonder
Created October 26, 2020 10:06
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 harryWonder/a26b9a905ea8afb3f2d41644eedf5c40 to your computer and use it in GitHub Desktop.
Save harryWonder/a26b9a905ea8afb3f2d41644eedf5c40 to your computer and use it in GitHub Desktop.
This file is responsible for loading our Dashboard Component before it is rendered into the DOM.
<template>
<main>
<DashboardComponent></DashboardComponent>
</main>
</template>
<script type="text/javascript">
import DashboardComponent from '../components/DashboardComponent';
export default {
components: {
DashboardComponent
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment