debian-mirror-gitlab/app/assets/javascripts/repository/pages/blob.vue

27 lines
544 B
Vue
Raw Normal View History

2021-04-29 21:17:54 +05:30
<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,
},
2021-06-08 01:23:25 +05:30
projectPath: {
type: String,
required: true,
},
2021-04-29 21:17:54 +05:30
},
};
</script>
<template>
2021-06-08 01:23:25 +05:30
<blob-content-viewer :path="path" :project-path="projectPath" />
2021-04-29 21:17:54 +05:30
</template>