intro-to-vue/main.js
2026-01-13 14:05:53 +01:00

10 lines
196 B
JavaScript

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