Skip to content

v0.1.0

Compare
Choose a tag to compare
@ryangjchandler ryangjchandler released this 30 Aug 13:19

Initial release

  • Includes a $clipboard magic property that can be invoked to copy data to the clipboard.
<div x-data="{ input: '' }">
    <input x-model="input">
    <button type="button" @click="$clipboard(input)">Copy to Clipboard</button>
</div>