Created
April 16, 2018 15:59
-
-
Save AlanJenkinsVS/8af3a2b27eab5bec44f88d4d6a2c8fff to your computer and use it in GitHub Desktop.
6. Single Root Components - Vue JS Optimisations
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> | |
<ul> | |
<NavBarRoutes :routes="persistentNavRoutes /> | |
<NavBarRoutes | |
v-if="loggedIn" | |
:routes="loggedInNavRoutes" /> | |
<NavBarRoutes | |
v-else | |
:routes="loggedOutNavRoutes" /> | |
</ul> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment