import Moveable from "lit-moveable"; import { LitElement, html } from "lit"; import { customElement, property } from "lit/decorators.js"; @customElement("lit-app") export default class App extends LitElement { render() { return html `

* You can persist by ` moveable.getRect()` method.

No Target
`; } onRender(e) { e.target.style.cssText += e.cssText; console.log(e.moveable.getRect()); } }