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

default.vue « strategies « components « feature_flags « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 73c32e52a56ad98871ab0bc310ed257f1f248c8a (plain)
1
2
3
4
5
6
7
8
9
10
11
<!-- eslint-disable vue/multi-word-component-names -->
<script>
export default {
  mounted() {
    this.$emit('change', { parameters: {} });
  },
  render() {
    return this.$scopedSlots.default?.();
  },
};
</script>