11 lines
154 B
Vue
11 lines
154 B
Vue
|
<script>
|
||
|
export default {
|
||
|
mounted() {
|
||
|
this.$emit('change', { parameters: {} });
|
||
|
},
|
||
|
render() {
|
||
|
return this.$slots.default;
|
||
|
},
|
||
|
};
|
||
|
</script>
|