useHistoryState
This composable can reactively save the given value into the history state. The state is tied to a single history entry.
Usage
ts
function useHistoryState<T = any>(key: string, initial: T): T
useHistoryState
accepts a key as its first argument and an initial value as its second. The key is an identifier for storing the initial value.
The function returns the saved state if it exists, or the the initial value otherwise.
Example
The following example will save a name
property in the history state, only for the current browing history entry. When navigating back and then forward, the entry will be restored. When refreshing, the entry will have disappeared.
vue
<script setup lang="ts">
const name = useHistoryState('name', '')
</script>
<template>
<input type="text" v-model="name" />
</template>