Skip to content
Snippets Groups Projects
Commit f2b1aa85 authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

Add editGitlab compo

parent 2c4edf56
No related branches found
No related tags found
No related merge requests found
<template>
<ProseA :to="path" target="blank">
<span> Edit this page on GitLab </span>
</ProseA>
</template>
<script setup lang="ts">
import { ref } from "vue";
const { page } = useContent();
const config = useDocus();
const props = defineProps<{
owner: string;
repo: string;
branch: string;
}>();
const baseUrl = ref(new URL("https://gitlab.pasteur.fr"));
const path = ref(
new URL(
`/${props.owner}/${props.repo}/-/edit/${props.branch}/content/${page.value._file}`,
baseUrl.value
).href
);
</script>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment