Closed tduccuong closed 4 years ago
Hi,
thanks for nice work!
But I cannot import the component locally. Always get 'template or rendered function not defined' error... I hade to import it in my main app.js and Vue.use(ProductZoomer) for it to work.
Vue.use(ProductZoomer)
Could u pls help me on that? Thanks!
@tduccuong ,you don't need import this from app.js, from your template, just write this three-line, it's the same:
import Vue from 'vue'; import ProductZoomer from 'vue-product-zoomer' Vue.use(ProductZoomer)
Hi,
thanks for nice work!
But I cannot import the component locally. Always get 'template or rendered function not defined' error... I hade to import it in my main app.js and
Vue.use(ProductZoomer)
for it to work.Could u pls help me on that? Thanks!