vue-storefront Questions
5
Solved
I declare a global variable in the main.js of the Vue.js project.
Vue.prototype.$API = "myapihere"
And I want to use this from everywhere.
and it's work properly by using this.$API.
But in Vuex...
Kerri asked 2/3, 2020 at 15:29
1
Solved
Currently I have following Watches in Product.vue file
watch: {
isOnline: {
async handler (isOnline) {
if (isOnline) {
const maxQuantity = await this.getQuantity();
this.maxQuantity = maxQuant...
Cribbs asked 15/12, 2020 at 7:48
1
© 2022 - 2024 — McMap. All rights reserved.