Skip to content

Instantly share code, notes, and snippets.

@xphong
Created November 11, 2017 19:50
Show Gist options
  • Save xphong/626aaa0053975dda39a3a998074d2981 to your computer and use it in GitHub Desktop.
Save xphong/626aaa0053975dda39a3a998074d2981 to your computer and use it in GitHub Desktop.
Marvel API + Vuepack (Vue + Vuex) Blog Post Home Code
<template>
<div class="page">
<search-character-form></search-character-form>
<characters-list></characters-list>
</div>
</template>
<script>
import SearchCharacterForm from 'components/SearchCharacterForm'
import CharactersList from 'components/CharactersList'
export default {
components: {
SearchCharacterForm,
CharactersList
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment