BigW Consortium Gitlab

repo_file_options.vue 399 Bytes
Newer Older
1 2 3
<script>
const RepoFileOptions = {
  props: {
4 5 6 7 8 9 10 11 12
    isMini: {
      type: Boolean,
      required: false,
      default: false,
    },
    projectName: {
      type: String,
      required: true,
    },
13 14 15 16 17 18 19
  },
};

export default RepoFileOptions;
</script>

<template>
Jacob Schatz committed
20
  <tr v-if="isMini" class="repo-file-options">
21 22 23 24 25
    <td>
      <span class="title">{{projectName}}</span>
    </td>
  </tr>
</template>