switched from v-bind: to just :

This commit is contained in:
Jason Wheeler 2022-09-21 16:25:53 -04:00
parent 1e5c966421
commit 6f82be6546
2 changed files with 3 additions and 3 deletions

View file

@ -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 },

View file

@ -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>