Skip to main content
Version: 1.1.2

redirectTo

Redirect your URL to another URL without reloading the browser.

Use example​

For this example you are in /books/drama and click on a button that changes the url to /books/history.

src/index.js
import { Router } from 'yourrouter'

const router = Router.getInstance()

const goToSectionButton = document.querySelector('#myButton')

goToSectionButton.addEventListener('click', () => {
router.redirectTo('/books/history')
})