8 lines
106 B
JavaScript
8 lines
106 B
JavaScript
const app = Vue.createApp({
|
|
data() {
|
|
return {
|
|
product: 'Socks'
|
|
}
|
|
}
|
|
})
|