mirror of
https://github.com/lainbo/component-party.git
synced 2026-04-05 13:09:03 +08:00
7 lines
258 B
HTML
7 lines
258 B
HTML
<p x-data="{
|
|
time: new Date().toLocaleTimeString(),
|
|
timer: null,
|
|
init() { this.timer = setInterval(() => (this.time = new Date().toLocaleTimeString()), 1000) },
|
|
destroy() { clearInterval(this.timer) }
|
|
}">Current time: <span x-text="time"></span></p>
|