debian-mirror-gitlab/app/assets/javascripts/repository/pages/blob.vue
2021-06-08 01:23:25 +05:30

26 lines
544 B
Vue

<script>
// This file is in progress and behind a feature flag, please see the following issue for more:
// https://gitlab.com/gitlab-org/gitlab/-/issues/323200
import BlobContentViewer from '../components/blob_content_viewer.vue';
export default {
components: {
BlobContentViewer,
},
props: {
path: {
type: String,
required: true,
},
projectPath: {
type: String,
required: true,
},
},
};
</script>
<template>
<blob-content-viewer :path="path" :project-path="projectPath" />
</template>