Skip to content

Instantly share code, notes, and snippets.

@danielschmitz
Created February 22, 2018 22:45
Show Gist options
  • Save danielschmitz/f0b3aa1f8599f69e49ae7f361bcd8e4d to your computer and use it in GitHub Desktop.
Save danielschmitz/f0b3aa1f8599f69e49ae7f361bcd8e4d to your computer and use it in GitHub Desktop.
Trabalhando com VueStash
<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