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>
|
||||
<navButton text="back" v-bind:scenario="navigationScenarios.CLICKED_BACK"></navButton>
|
||||
<navButton text="back" :scenario="navigationScenarios.CLICKED_BACK"></navButton>
|
||||
Vehicle Year Placeholder
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import navButton from '../../common-components/nav-button/nav-button.vue';
|
||||
import { navigationScenarios } from "@/router/router-constants/navigation-scenarios";
|
||||
|
||||
|
||||
export default {
|
||||
name: 'vehicle-year',
|
||||
components: { navButton },
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<p>Welcome Page Placeholder</p>
|
||||
<br />
|
||||
<navButton text="Next" v-bind:scenario="navigationScenarios.CLICKED_FORWARD"></navButton>
|
||||
<navButton text="Next" :scenario="navigationScenarios.CLICKED_FORWARD"></navButton>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
|
|
|||
Loading…
Reference in a new issue