Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 412 Bytes

fresh-pots-draw.md

File metadata and controls

17 lines (13 loc) · 412 Bytes
astro
minor

View transitions can now be triggered from JavaScript!

Import the client-side router from "astro:transitions/client" and enjoy your new remote control for navigation:

import { navigate } from 'astro:transitions/client';

// Navigate to the selected option automatically.
document.querySelector('select').onchange = (ev) => {
  let href = ev.target.value;
  navigate(href);
};