Use the wiz-fragment
component to insert email fragments in Veeva Vault.
For more information, see Fragment.
Installation
To install the wiz-fragment
component, run the following command in the root directory of your email project:
wiz install @email/wiz-fragment
For more information, see Install components.
Usage
NOTE: As best practice, use eWizard Editor to add and edit the components.
Add the wiz-fragment
component to your email template and change its properties in the App.vue
file:
<!--./App.vue --><template> <wiz-root align="center" style="background: #ffffff; width: 700px;"> <wiz-fragment :max="100" :min="100"></wiz-fragment> </wiz-root> </template>
Attributes
You can set the number of email fragments that you can insert into the wiz-fragment
component using the following attributes within the <wiz-fragment></wiz-fragment>
tag:
β’ min
Set the minimum number of email fragments. You can enter the number from 1 to 100:
<wiz-fragment :min="100"></wiz-fragment>
β’ max
Set the maximum number of email fragments. You can enter the number from 1 to 100:
<wiz-fragment :max="100"></wiz-fragment>
Properties
The wiz-fragment
component has the following properties:
Property | Type | Default | Description |
| Number |
| The minimum number of email fragments you can insert into the email in Veeva Vault. |
| Number |
| The maximum number of email fragments you can insert into the email in Veeva Vault. |
For more information, see Component properties.