Slight change before hookup to cms
This commit is contained in:
parent
b2ebe33005
commit
270c75743c
1 changed files with 4 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<reviewBlock headerText="Vehicle" :content="displayContent" @edit-clicked="editClicked" />
|
<reviewBlock :headerText="headerText" :content="displayContent" @edit-clicked="editClicked" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
@ -17,6 +17,9 @@ export default {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
headerText () {
|
||||||
|
return "Vehicle";
|
||||||
|
},
|
||||||
displayContent() {
|
displayContent() {
|
||||||
return ["2018 Ford Fiesta"];
|
return ["2018 Ford Fiesta"];
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue