Skip to content

Instantly share code, notes, and snippets.

@duwaljyoti
Last active March 22, 2018 00:55
Show Gist options
  • Save duwaljyoti/a19a01ce8808aad0742a81c9f5b5a6ec to your computer and use it in GitHub Desktop.
Save duwaljyoti/a19a01ce8808aad0742a81c9f5b5a6ec to your computer and use it in GitHub Desktop.
<template>
<div>
<!--loading component-->
<loading :loading="loading">
</loading>
<!--flash component-->
<flash>
</flash>
<!--navbar component-->
<nav-bar @note-route-changed="changeRoute('favourite')">
</nav-bar>
<!--code for rendering notes and favourite notes-->
<div id="notes-list">
</div>
</div>
</template>
<script>
export default{
...mapState([
'notes',
'favouriteNotes',
]),
...mapActions([
'getAll',
'getFavourite',
'getUserFavouriteId',
]),
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment