intro-to-vue/main.js
2020-05-26 23:39:42 -04:00

9 lines
160 B
JavaScript

const app = Vue.createApp({
data() {
return {
product: 'Socks',
image: './assets/images/socks_green.jpg'
}
}
})