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

11 lines
154 B
Vue
Raw Normal View History

2021-01-03 14:25:43 +05:30
<script>
export default {
mounted() {
this.$emit('change', { parameters: {} });
},
render() {
return this.$slots.default;
},
};
</script>