mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-22 19:22:19 +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()
|