Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Last active January 25, 2019 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uno-de-piera/3e6fc6d940c5f1f843e31d08dd68df00 to your computer and use it in GitHub Desktop.
Save uno-de-piera/3e6fc6d940c5f1f843e31d08dd68df00 to your computer and use it in GitHub Desktop.
<script>
mounted () {
this.$store.watch(
state => state.authModule.isLogged, //dato a ojear
isLogged => isLogged, //aquí podemos hacer lo que deseemos con ese dato
{
deep: false // para trabajo con elementos anidados
}
)
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment