feat: Add inline editing support for CRM attributes (#2241)

This commit is contained in:
Nithin David Thomas
2021-05-10 20:01:45 +05:30
committed by GitHub
parent a216297ce1
commit 627a89faf0
2 changed files with 41 additions and 5 deletions

View File

@@ -34,7 +34,7 @@ export default {
const Template = (args, { argTypes }) => ({
props: Object.keys(argTypes),
components: { ContactAttribute },
template: '<contact-attribute v-bind="$props" @edit="onEdit" />',
template: '<contact-attribute v-bind="$props" @update="onEdit" />',
});
export const DefaultAttribute = Template.bind({});