L3 ending code

This commit is contained in:
Adam Jahr 2020-05-29 22:12:52 -04:00
parent 7db826380e
commit 0f08a0ddb3
2 changed files with 3 additions and 2 deletions

View File

@ -15,7 +15,7 @@
<div class="product-display">
<div class="product-container">
<div class="product-image">
<!-- image goes here -->
<img v-bind:src="image">
</div>
<div class="product-info">
<h1>{{ product }}</h1>

View File

@ -1,7 +1,8 @@
const app = Vue.createApp({
data() {
return {
product: 'Socks'
product: 'Socks',
image: './assets/images/socks_green.jpg'
}
}
})