debian-mirror-gitlab/app/assets/javascripts/repo/components/repo_file_options.vue
2017-09-10 17:25:29 +05:30

25 lines
399 B
Vue

<script>
const RepoFileOptions = {
props: {
isMini: {
type: Boolean,
required: false,
default: false,
},
projectName: {
type: String,
required: true,
},
},
};
export default RepoFileOptions;
</script>
<template>
<tr v-if="isMini" class="repo-file-options">
<td>
<span class="title">{{projectName}}</span>
</td>
</tr>
</template>