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 `

* When you drag, the class name ` $$ { `{ableName}` } -view-dragging` is added to the viewContainer.

Target
`; } onRender(e) { e.target.style.cssText += e.cssText; } }