Skip to content

Commit 376d710

Browse files
committed
chore: example with app check
1 parent 95ea119 commit 376d710

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

playground/src/pages/app-check.vue

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<script lang="ts" setup>
2+
import { useAppCheckToken } from 'vuefire'
3+
4+
const token = useAppCheckToken()
5+
</script>
6+
7+
<template>
8+
<div>
9+
<h1>App Check</h1>
10+
<p>Token: {{ token }}</p>
11+
</div>
12+
</template>

0 commit comments

Comments
 (0)