mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-17 13:38:07 +01:00
18 lines
418 B
Vue
18 lines
418 B
Vue
<template>
|
|
<div class="flex items-center justify-between gap-1.5">
|
|
<UButton
|
|
v-if="page"
|
|
:to="`https://github.com/nuxtlabs/ui/edit/dev/docs/content/${page._file}`"
|
|
label="Edit this page on GitHub"
|
|
color="primary"
|
|
variant="link"
|
|
:padded="false"
|
|
icon="i-heroicons-pencil-square"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const { page } = useContent()
|
|
</script>
|