feat: Create component to merge contacts (#2412)

Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
This commit is contained in:
Nithin David Thomas
2021-07-06 13:02:37 +05:30
committed by GitHub
parent e11b3c4f17
commit 104ae8de2e
8 changed files with 369 additions and 6 deletions

View File

@@ -10,7 +10,7 @@ const Template = (args, { argTypes }) => ({
props: Object.keys(argTypes),
components: { ContactIntro },
template:
'<contact-intro v-bind="$props" :user="user" @edit="onEdit" @message="onNewMessage" />',
'<contact-intro v-bind="$props" @edit="onEdit" @message="onNewMessage" />',
});
export const DefaultContactIntro = Template.bind({});