Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

L7 end #148

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
L3 start
Adam Jahr authored and Adam Jahr committed May 27, 2020
commit 95bb5ecd554d171ebf8aff97d3adb6e6555bbc8e
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@
<div class="product-display">
<div class="product-container">
<div class="product-image">
<img v-bind:src="image">
<!-- image goes here -->
</div>
<div class="product-info">
<h1>{{ product }}</h1>
3 changes: 1 addition & 2 deletions main.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
const app = Vue.createApp({
data() {
return {
product: 'Socks',
image: './assets/images/socks_green.jpg'
product: 'Socks'
}
}
})