Commit cdf7c5ef authored by Vitaly Slobodin's avatar Vitaly Slobodin

Destructure props to the template

parent fa59902e
...@@ -39,8 +39,8 @@ export default { ...@@ -39,8 +39,8 @@ export default {
</script> </script>
<template> <template>
<step :step-id="$options.stepId" :title="$options.i18n.stepTitle" :is-valid="isValid"> <step :step-id="$options.stepId" :title="$options.i18n.stepTitle" :is-valid="isValid">
<template #body="props"> <template #body="{ active }">
<zuora :active="props.active" /> <zuora :active="active" />
</template> </template>
<template #summary> <template #summary>
<div class="js-summary-line-1"> <div class="js-summary-line-1">
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment