mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-19 22:41:42 +01:00
23 lines
455 B
Vue
23 lines
455 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">
|
|
defineProps({
|
|
page: {
|
|
type: Object,
|
|
default: null
|
|
}
|
|
})
|
|
</script>
|