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>
|
<template>
|
||||||
<VeeValidateForm @submit="onSubmit" @invalid-submit="onInvalidSubmit">
|
<Form @submit="onSubmit" @invalid-submit="onInvalidSubmit">
|
||||||
<div class="page-container-grouped-styles overflow-auto">
|
<div class="page-container-grouped-styles overflow-auto">
|
||||||
<SiteHeader
|
<SiteHeader
|
||||||
cms-widget-name="SiteHeaderWidget"
|
cms-widget-name="SiteHeaderWidget"
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</VeeValidateForm>
|
</Form>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
// Import Supporting Files
|
// Import Supporting Files
|
||||||
|
|
@ -40,7 +40,7 @@ export default {
|
||||||
name: 'address-lookup',
|
name: 'address-lookup',
|
||||||
mixins: [BaseFormMixin],
|
mixins: [BaseFormMixin],
|
||||||
components: {
|
components: {
|
||||||
VeeValidateForm: Form,
|
Form,
|
||||||
SiteFooter,
|
SiteFooter,
|
||||||
SiteHeader,
|
SiteHeader,
|
||||||
SiteSubHeader,
|
SiteSubHeader,
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<VeeValidateForm @submit="onSubmit" @invalid-submit="onInvalidSubmit">
|
<Form @submit="onSubmit" @invalid-submit="onInvalidSubmit">
|
||||||
<div class="page-container-grouped-styles overflow-auto">
|
<div class="page-container-grouped-styles overflow-auto">
|
||||||
<SiteHeader
|
<SiteHeader
|
||||||
cms-widget-name="SiteHeaderWidget"
|
cms-widget-name="SiteHeaderWidget"
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</VeeValidateForm>
|
</Form>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
// Import Supporting Files
|
// Import Supporting Files
|
||||||
|
|
@ -40,7 +40,7 @@ export default {
|
||||||
name: 'license-plate-lookup',
|
name: 'license-plate-lookup',
|
||||||
mixins: [BaseFormMixin],
|
mixins: [BaseFormMixin],
|
||||||
components: {
|
components: {
|
||||||
VeeValidateForm: Form,
|
Form,
|
||||||
SiteFooter,
|
SiteFooter,
|
||||||
SiteHeader,
|
SiteHeader,
|
||||||
SiteSubHeader,
|
SiteSubHeader,
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<VeeValidateForm
|
<Form
|
||||||
@submit="onSubmit"
|
@submit="onSubmit"
|
||||||
@invalid-submit="onInvalidSubmit"
|
@invalid-submit="onInvalidSubmit"
|
||||||
>
|
>
|
||||||
|
|
@ -29,7 +29,7 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</VeeValidateForm>
|
</Form>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
// Import Supporting Files
|
// Import Supporting Files
|
||||||
|
|
@ -50,7 +50,7 @@ export default {
|
||||||
name: 'vehicle-lookup',
|
name: 'vehicle-lookup',
|
||||||
mixins: [BaseFormMixin],
|
mixins: [BaseFormMixin],
|
||||||
components: {
|
components: {
|
||||||
VeeValidateForm: Form,
|
Form,
|
||||||
SiteFooter,
|
SiteFooter,
|
||||||
SiteHeader,
|
SiteHeader,
|
||||||
SiteSubHeader,
|
SiteSubHeader,
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<VeeValidateForm
|
<Form
|
||||||
@submit="onSubmit"
|
@submit="onSubmit"
|
||||||
@invalid-submit="onInvalidSubmit"
|
@invalid-submit="onInvalidSubmit"
|
||||||
v-slot="{ meta }"
|
v-slot="{ meta }"
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</VeeValidateForm>
|
</Form>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
// Import Supporting Files
|
// Import Supporting Files
|
||||||
|
|
@ -65,7 +65,7 @@ export default {
|
||||||
SiteFooter,
|
SiteFooter,
|
||||||
SiteHeader,
|
SiteHeader,
|
||||||
SiteSubHeader,
|
SiteSubHeader,
|
||||||
VeeValidateForm: Form,
|
Form,
|
||||||
VehicleBanner,
|
VehicleBanner,
|
||||||
VinLocationInformation,
|
VinLocationInformation,
|
||||||
VinLookupAlerts,
|
VinLookupAlerts,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue