Last active
June 7, 2021 12:22
-
-
Save SharmilaS22/4df1da93ef863846a4d40eea44e23bab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<Navbar v-bind:links="['Home', 'About', 'Contact']"/> | |
<Login /> | |
<Footer /> | |
</template> | |
<script> | |
import Navbar from './components/Navbar' | |
import Login from './components/Login' | |
import Footer from './components/Footer' | |
export default { | |
name: 'App', | |
components: { | |
Navbar, | |
Login, | |
Footer | |
} | |
} | |
</script> | |
<style> | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment