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: cb8ffbddfbd5fd74a55db2a195223fe1980dec93 (plain)
1
2
3
4
5
6
7
8
9
10
<script>
export default {
  mounted() {
    this.$emit('change', { parameters: {} });
  },
  render() {
    return this.$slots.default;
  },
};
</script>