Lines 1-6
Link Here
|
1 |
<template> |
1 |
<template> |
2 |
<div v-if="!initialized">{{ $__("Loading") }}</div> |
2 |
<div v-if="!initialized">{{ $__("Loading") }}</div> |
3 |
<main id="vendors_add" v-else> |
3 |
<template v-else> |
4 |
<h1 v-if="vendor.id"> |
4 |
<h1 v-if="vendor.id"> |
5 |
{{ $__("Edit vendor #%s").format(vendor.id) }} |
5 |
{{ $__("Edit vendor #%s").format(vendor.id) }} |
6 |
</h1> |
6 |
</h1> |
Lines 15-21
Link Here
|
15 |
> |
15 |
> |
16 |
</ToolbarButton> |
16 |
</ToolbarButton> |
17 |
</Toolbar> |
17 |
</Toolbar> |
18 |
<form @submit="onSubmit($event)" ref="vendorForm"> |
18 |
<form @submit="onSubmit($event)" ref="vendorForm" id="vendors_add"> |
19 |
<VendorDetails :vendor="vendor" /> |
19 |
<VendorDetails :vendor="vendor" /> |
20 |
<VendorContacts :vendor="vendor" /> |
20 |
<VendorContacts :vendor="vendor" /> |
21 |
<VendorInterfaces :vendor="vendor" /> |
21 |
<VendorInterfaces :vendor="vendor" /> |
Lines 25-31
Link Here
|
25 |
:discountValid="discountValid" |
25 |
:discountValid="discountValid" |
26 |
/> |
26 |
/> |
27 |
</form> |
27 |
</form> |
28 |
</main> |
28 |
</template> |
29 |
</template> |
29 |
</template> |
30 |
|
30 |
|
31 |
<script> |
31 |
<script> |
32 |
- |
|
|