gitlab-org--gitlab-foss/app/assets/javascripts/static_site_editor/components/app.vue

14 lines
248 B
Vue

<script>
export default {
props: {
mergeRequestsIllustrationPath: {
type: String,
required: true,
},
},
};
</script>
<template>
<router-view :merge-requests-illustration-path="mergeRequestsIllustrationPath" />
</template>