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,5 +1,5 @@
|
||||||
<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>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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