Merge pull request #95 from Safelite/feature/SSR-135
This commit is contained in:
commit
c55f3731be
4 changed files with 12 additions and 12 deletions
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<VeeValidateForm @submit="onSubmit" @invalid-submit="onInvalidSubmit">
|
||||
<Form @submit="onSubmit" @invalid-submit="onInvalidSubmit">
|
||||
<div class="page-container-grouped-styles overflow-auto">
|
||||
<SiteHeader
|
||||
cms-widget-name="SiteHeaderWidget"
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
/>
|
||||
</div>
|
||||
</div>
|
||||
</VeeValidateForm>
|
||||
</Form>
|
||||
</template>
|
||||
<script>
|
||||
// Import Supporting Files
|
||||
|
|
@ -40,7 +40,7 @@ export default {
|
|||
name: 'address-lookup',
|
||||
mixins: [BaseFormMixin],
|
||||
components: {
|
||||
VeeValidateForm: Form,
|
||||
Form,
|
||||
SiteFooter,
|
||||
SiteHeader,
|
||||
SiteSubHeader,
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<VeeValidateForm @submit="onSubmit" @invalid-submit="onInvalidSubmit">
|
||||
<Form @submit="onSubmit" @invalid-submit="onInvalidSubmit">
|
||||
<div class="page-container-grouped-styles overflow-auto">
|
||||
<SiteHeader
|
||||
cms-widget-name="SiteHeaderWidget"
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
/>
|
||||
</div>
|
||||
</div>
|
||||
</VeeValidateForm>
|
||||
</Form>
|
||||
</template>
|
||||
<script>
|
||||
// Import Supporting Files
|
||||
|
|
@ -40,7 +40,7 @@ export default {
|
|||
name: 'license-plate-lookup',
|
||||
mixins: [BaseFormMixin],
|
||||
components: {
|
||||
VeeValidateForm: Form,
|
||||
Form,
|
||||
SiteFooter,
|
||||
SiteHeader,
|
||||
SiteSubHeader,
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<VeeValidateForm
|
||||
<Form
|
||||
@submit="onSubmit"
|
||||
@invalid-submit="onInvalidSubmit"
|
||||
>
|
||||
|
|
@ -29,7 +29,7 @@
|
|||
/>
|
||||
</div>
|
||||
</div>
|
||||
</VeeValidateForm>
|
||||
</Form>
|
||||
</template>
|
||||
<script>
|
||||
// Import Supporting Files
|
||||
|
|
@ -50,7 +50,7 @@ export default {
|
|||
name: 'vehicle-lookup',
|
||||
mixins: [BaseFormMixin],
|
||||
components: {
|
||||
VeeValidateForm: Form,
|
||||
Form,
|
||||
SiteFooter,
|
||||
SiteHeader,
|
||||
SiteSubHeader,
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<VeeValidateForm
|
||||
<Form
|
||||
@submit="onSubmit"
|
||||
@invalid-submit="onInvalidSubmit"
|
||||
v-slot="{ meta }"
|
||||
|
|
@ -35,7 +35,7 @@
|
|||
/>
|
||||
</div>
|
||||
</div>
|
||||
</VeeValidateForm>
|
||||
</Form>
|
||||
</template>
|
||||
<script>
|
||||
// Import Supporting Files
|
||||
|
|
@ -65,7 +65,7 @@ export default {
|
|||
SiteFooter,
|
||||
SiteHeader,
|
||||
SiteSubHeader,
|
||||
VeeValidateForm: Form,
|
||||
Form,
|
||||
VehicleBanner,
|
||||
VinLocationInformation,
|
||||
VinLookupAlerts,
|
||||
|
|
|
|||
Loading…
Reference in a new issue