debian-mirror-gitlab/app/assets/javascripts/feature_flags/components/strategies/default.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
164 B
Vue
Raw Normal View History

2021-01-03 14:25:43 +05:30
<script>
export default {
mounted() {
this.$emit('change', { parameters: {} });
},
render() {
2022-08-13 15:12:31 +05:30
return this.$scopedSlots.default?.();
2021-01-03 14:25:43 +05:30
},
};
</script>