URL Hash

URL Hashの取得や設定ができます。

URI hash://
Path

値は設定しません

Example hash://

ViewState

Retrieve and Update

src 属性に hash:// を指定して、URL Hash値の取得や設定をします。

vue
<template>
 <ViewState
  v-slot="example"
  src="hash://"
 >
  <b-input :state-src="example" />
  <div>{{ example.data }}</div>
 </ViewState>
</template>