-
-
Notifications
You must be signed in to change notification settings - Fork 464
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix multi byte strings in history encryption + test
- Loading branch information
1 parent
88a765b
commit 541529e
Showing
4 changed files
with
31 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
<script setup lang="ts"> | ||
import { Link, router } from '@inertiajs/vue3' | ||
defineProps<{ pageNumber: number }>() | ||
defineProps<{ pageNumber: number; multiByte: string }>() | ||
</script> | ||
|
||
<template> | ||
<Link href="/history/1">Page 1</Link> | ||
<Link href="/history/2">Page 2</Link> | ||
<Link href="/history/3">Page 3</Link> | ||
<Link href="/history/4">Page 4</Link> | ||
<Link href="/history/5">Page 5</Link> | ||
|
||
<button @click="router.clearHistory()">Clear History</button> | ||
|
||
<div>This is page {{ pageNumber }}.</div> | ||
<div>Multi byte character: {{ multiByte }}</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters