mergeable-ish client UI

This commit is contained in:
Tiago Vasconcelos 2023-03-03 10:24:42 +00:00
parent 82ef0947cd
commit 9c29653ea0
6 changed files with 283 additions and 64 deletions

View file

@ -6,8 +6,21 @@ async function productDetail(path) {
props: ['product'],
data: function () {
return {}
return {
slide: 1
}
},
methods: {}
computed: {
win_width() {
return this.$q.screen.width - 59
},
win_height() {
return this.$q.screen.height - 0
}
},
methods: {},
created() {
console.log('ping')
}
})
}