Reputation: 829
I am creating a wordpress site with vuejs framework. I am about to put vuejs components into this directory.
wp-content/themes/{theme}/components
The problem is, I can't import vuejs components with ES6 import App from './components/App.vue'
functionality.
I tried using CDN but I don't know how importing of components works.
Does anybody know?
Upvotes: 0
Views: 600
Reputation: 1730
the are 2 main solutions for this problem:
Upvotes: 1