Skip to content

Instantly share code, notes, and snippets.

View kidbombay's full-sized avatar

Ketan Anjaria kidbombay

View GitHub Profile
@kidbombay
kidbombay / Live View Hooks Example
Created August 24, 2021 20:39
Getting Live View to work with Javascript Hooks
### In App.js initialize the hook and set it on the LiveSocket
### Tested with LiveView 0.15.7
```
Hooks.MyHook = {
mounted() {
console.log("MyHook.mounted")
},
updated() {
console.log("MyHook.updated")
}