Open andrevandal opened 5 years ago
Hi, I'm having the same problem. Did you get any response or did you find a solution?
No :(
Ok I found a solution.
With the client API of gridsome, you're able to conditionally install plugins for vue in your src/main.js
.
export default function(Vue, { router, head, isClient }) {
// ...
if (isClient) Vue.use(require("vue-resize-text"));
// ...
}
You'll have to install the directive globally though.
Hi, I'm using this lib with Gridsome and I've got this error:
This is how I'm using:
Cloud you help me?