Jon Højlund Arnfred
Jon Højlund Arnfred
One could also use the canvas method measureText() to get the width of a text string in px, see [https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/measureText](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/measureText). ``` javascript const text = "something"; const context = document.createElement("canvas").getContext('2d');...
I'm looking into vuex-orm exactly because cascading deletes frontend is pretty tedious to do by hand, so would love this feature to be implemented. As most apps probably already have...