<template>
<div>
<sidnav></sidnav>
<topnav></topnav>
</div>
</template>
<script>
import sidnav from '@/components/sidnav.vue'
import topnav from '@/components/topnav.vue'
export default {
components: {
sidnav,
topnav
}
}
</script>
This is the Dashboard home, it will route throw sidenav and topnav
I'm trying to make admin panel with VueJS.
I am able to make the login and load the js and css in index.html
but when i make the dashboard, I don't know how to load or include the css and the js for the dashboard only.
so is there a way to include the 'js' and 'css' l enter code hereink into the Dashboard home page.