switched from v-bind: to just :
This commit is contained in:
parent
1e5c966421
commit
6f82be6546
2 changed files with 3 additions and 3 deletions
|
|
@ -1,12 +1,12 @@
|
||||||
<template>
|
<template>
|
||||||
<navButton text="back" v-bind:scenario="navigationScenarios.CLICKED_BACK"></navButton>
|
<navButton text="back" :scenario="navigationScenarios.CLICKED_BACK"></navButton>
|
||||||
Vehicle Year Placeholder
|
Vehicle Year Placeholder
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import navButton from '../../common-components/nav-button/nav-button.vue';
|
import navButton from '../../common-components/nav-button/nav-button.vue';
|
||||||
import { navigationScenarios } from "@/router/router-constants/navigation-scenarios";
|
import { navigationScenarios } from "@/router/router-constants/navigation-scenarios";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'vehicle-year',
|
name: 'vehicle-year',
|
||||||
components: { navButton },
|
components: { navButton },
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<p>Welcome Page Placeholder</p>
|
<p>Welcome Page Placeholder</p>
|
||||||
<br />
|
<br />
|
||||||
<navButton text="Next" v-bind:scenario="navigationScenarios.CLICKED_FORWARD"></navButton>
|
<navButton text="Next" :scenario="navigationScenarios.CLICKED_FORWARD"></navButton>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue