Created
February 22, 2018 22:45
-
-
Save danielschmitz/f0b3aa1f8599f69e49ae7f361bcd8e4d to your computer and use it in GitHub Desktop.
Trabalhando com VueStash
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> | |
<div class="hello"> | |
<div v-if="isLogged()"> | |
Usuário Logado: {{username}} | |
</div> | |
<div v-else> | |
Ninguém logado | |
</div> | |
</div> | |
</template> | |
<script> | |
export default { | |
name: 'HelloWorld', | |
store: ['username', 'isLogged', 'token'] | |
} | |
</script> | |
<!-- Add "scoped" attribute to limit CSS to this component only --> | |
<style scoped> | |
div{ | |
padding:30px; | |
margin: 10px; | |
background: #def; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment