mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
12 lines
270 B
JavaScript
12 lines
270 B
JavaScript
import { Livewire, Alpine } from '../../vendor/livewire/livewire/dist/livewire.esm';
|
|
|
|
Alpine.directive('clipboard', (el) => {
|
|
let text = el.textContent
|
|
|
|
el.addEventListener('click', () => {
|
|
navigator.clipboard.writeText(text)
|
|
})
|
|
})
|
|
|
|
Livewire.start()
|