Skip to content

Instantly share code, notes, and snippets.

@kuroski
Created September 7, 2018 19:41
Show Gist options
  • Save kuroski/d263007e1faaf63126feb382ea01e44b to your computer and use it in GitHub Desktop.
Save kuroski/d263007e1faaf63126feb382ea01e44b to your computer and use it in GitHub Desktop.
<script>
import VUserSearchForm from '@/components/VUserSearchForm'
import VUserProfile from '@/components/VUserProfile'
export default {
name: 'UserView',
components: {
VUserSearchForm,
VUserProfile,
},
data() {
return {
user: { name: '' }
}
}
}
</script>
<template>
<div>
<VUserSearchForm />
<VUserProfile :user="user" />
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment