John Fercher
John Fercher
This is my code: ```vue .graph { border: solid red 1px; height: 1080px; } Loading... import axios from "axios"; import VNetworkGraph from "v-network-graph" import * as vNG from "v-network-graph" import...
Which version of Vue are you using? This is my entire project (https://github.com/johnfercher/medium-logistic/tree/ep18-shortest-path/frontend). I'm not a pro frontend developer, maybe I am doing something dumb... I'm running it as `npm...
It worksed using `npm run preview`. If you want an example of your library working in video here it is: https://www.youtube.com/watch?v=XkW-Gh_kHUE
Thank you! I re-uploaded the video here: https://www.youtube.com/watch?v=XkW-Gh_kHUE
Release: https://github.com/johnfercher/maroto/releases/tag/v2.3.1
Could you explain better? With images, I don't get it.
There is a reason for that, I want to differentiate the objects from Row, Col and Components (Line, Image, Codes and etc). This is to improve lib usage by avoiding...
Could you provide a clear example of how do this nested feature would help you and also why is not possible to achieve with the today implementation? currently you can...
Hello, the go-fpdf which we use support the usage of `io.Writer`, this would solve your issue?
See this: https://pkg.go.dev/github.com/jung-kurt/gofpdf#Fpdf.Output, what maroto does is to pass a `b = bytes.Buffer` to it, and executes a `b.Bytes()` and return. Is possible to expose this `io.Writer` to you handle...