Welcome to mirror list, hosted at ThFree Co, Russian Federation.

show_ml_model.vue « apps « model_registry « ml « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4f17c840d7d38a0fbf1c48cecae60268fe72b84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<script>
export default {
  name: 'ShowMlModelApp',
  components: {},
  props: {
    model: {
      type: Object,
      required: true,
    },
  },
};
</script>

<template>
  <div>{{ model.name }}</div>
</template>